01: /*
02: * Created by IntelliJ IDEA.
03: * User: Matt
04: * Date: Jun 9, 2002
05: * Time: 6:31:12 PM
06: * To change template for new class use
07: * Code Style | Class Templates options (Tools | IDE Options).
08: */
09: package org.apache.ojb.broker;
10:
11: import java.io.Serializable;
12:
13: public class Table_1Object implements Serializable {
14: private int pk;
15: private Table_2Object table2Object;
16: private Integer table2ObjectFK;
17:
18: public int getPk() {
19: return pk;
20: }
21:
22: public void setPk(int pk) {
23: this .pk = pk;
24: }
25:
26: public Table_2Object getTable2Object() {
27: return table2Object;
28: }
29:
30: public void setTable2Object(Table_2Object table2Object) {
31: this .table2Object = table2Object;
32: }
33:
34: public Integer getTable2ObjectFK() {
35: return table2ObjectFK;
36: }
37:
38: public void setTable2ObjectFK(Integer table2ObjectFK) {
39: this.table2ObjectFK = table2ObjectFK;
40: }
41: }
|