01: package net.sf.mockcreator.codegeneration;
02:
03: import java.lang.reflect.Method;
04:
05: public interface IMockedMethodGenerator {
06: void setMethod(Method method);
07:
08: String getReturnables();
09:
10: String getMockedMethodBody();
11:
12: String getMockedMethodDeclaration();
13:
14: String getParametersSpecification();
15:
16: String getAcceptableParametersSpecification();
17: }
|