01: //$Id: Simple05.java 7 2007-08-17 19:32:18Z jcamaia $
02:
03: package net.sf.persist.tests.common;
04:
05: import net.sf.persist.annotations.Column;
06:
07: // doesn't specify a table and guessed names won't work -- will blow
08: public class Simple05 {
09:
10: private long id;
11: private String stringCol;
12: private long intCol;
13:
14: @Column(autoGenerated=true)
15: public long getId() {
16: return id;
17: }
18:
19: public void setId(long id) {
20: this .id = id;
21: }
22:
23: public String getStringCol() {
24: return stringCol;
25: }
26:
27: public void setStringCol(String stringCol) {
28: this .stringCol = stringCol;
29: }
30:
31: public long getIntCol() {
32: return intCol;
33: }
34:
35: public void setIntCol(long intCol) {
36: this.intCol = intCol;
37: }
38:
39: }
|