01: package com.mockrunner.gen.proc; 02: 03: import java.util.List; 04: 05: public interface AdapterProcessor { 06: public void process(Class module, List excludedMethods); 07: 08: public String getName(); 09: 10: public String getOutput(); 11: }