01: package net.sf.mockcreator;
02:
03: public interface Primitives {
04: byte getByte(boolean param);
05:
06: char getChar(double param);
07:
08: short getShort(float param);
09:
10: int getInt(long param);
11:
12: long getLong(int param);
13:
14: float getFloat(short param);
15:
16: double getDouble(char param);
17:
18: boolean getBoolean(byte param);
19:
20: void foo(Integer param);
21:
22: void foo(int param);
23: }
|