01: package org.xorm.tests.model;
02:
03: import java.util.Collection;
04: import java.util.Date;
05:
06: public interface TestInterface {
07: boolean getBoolean();
08:
09: void setBoolean(boolean b);
10:
11: byte getByte();
12:
13: void setByte(byte b);
14:
15: int getInt();
16:
17: void setInt(int i);
18:
19: long getLong();
20:
21: void setLong(long l);
22:
23: float getFloat();
24:
25: void setFloat(float f);
26:
27: double getDouble();
28:
29: void setDouble(double d);
30:
31: char getChar();
32:
33: void setChar(char ch);
34:
35: String getString();
36:
37: void setString(String s);
38:
39: Date getDate();
40:
41: void setDate(Date date);
42:
43: Collection getCollection();
44: }
|