01: package net.sf.mockcreator.codegeneration;
02:
03: import java.lang.reflect.Method;
04:
05: public interface IFormatter {
06: void setClass(Class clz);
07:
08: void setMethod(Method method);
09:
10: String getClassName();
11:
12: String getMockedClassName();
13:
14: String getReturnType();
15:
16: String getMethodName();
17:
18: String getParameters();
19:
20: String getExceptions();
21:
22: String getEnum();
23: }
|