KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > legacy > One


1 //$Id: One.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
2
package org.hibernate.test.legacy;
3
4 import java.util.Set JavaDoc;
5
6 public class One {
7     Long JavaDoc key;
8     String JavaDoc value;
9     Set JavaDoc manies;
10     private int x;
11     
12     public int getX() {
13         return x;
14     }
15     public void setX(int x) {
16         this.x = x;
17     }
18     
19     public void setKey(Long JavaDoc key) {
20         this.key = key;
21     }
22     
23     public Long JavaDoc getKey() {
24         return this.key;
25     }
26     
27     public void setValue(String JavaDoc value) {
28         this.value = value;
29     }
30     
31     public String JavaDoc getValue() {
32         return this.value;
33     }
34     
35     public Set JavaDoc getManies() {
36         return manies;
37     }
38     
39     public void setManies(Set JavaDoc manies) {
40         this.manies = manies;
41     }
42     
43 }
44
45
46
47
48
49
50
Popular Tags