01: package net.sf.mockcreator.expectable;
02:
03: import java.util.Date;
04:
05: import net.sf.mockcreator.Struct;
06:
07: public interface Expectables {
08: Struct map(Struct pattern);
09:
10: Struct map(Struct pattern, Struct pattern2);
11:
12: StructNoEquals get(int key);
13:
14: void timestamp(Date d);
15:
16: void calctype(float f);
17:
18: void calcsum(double d);
19: }
|