KickJava   Java API By Example, From Geeks To Geeks.

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


1 //$Id: Fee.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
2
package org.hibernate.test.legacy;
3
4 import java.io.Serializable JavaDoc;
5 import java.util.Set JavaDoc;
6
7 public class Fee implements Serializable JavaDoc {
8     public Fee fee;
9     public Fee anotherFee;
10     public String JavaDoc fi;
11     public String JavaDoc key;
12     public Set JavaDoc fees;
13     private Qux qux;
14     private FooComponent compon;
15     private int count;
16     
17     public Fee() {
18     }
19     
20     public Fee getFee() {
21         return fee;
22     }
23     
24     public void setFee(Fee fee) {
25         this.fee = fee;
26     }
27     
28     public String JavaDoc getFi() {
29         return fi;
30     }
31     
32     public void setFi(String JavaDoc fi) {
33         this.fi = fi;
34     }
35     
36     public String JavaDoc getKey() {
37         return key;
38     }
39     
40     public void setKey(String JavaDoc key) {
41         this.key = key;
42     }
43     
44     public Set JavaDoc getFees() {
45         return fees;
46     }
47     
48     public void setFees(Set JavaDoc fees) {
49         this.fees = fees;
50     }
51     
52     public Fee getAnotherFee() {
53         return anotherFee;
54     }
55     
56     public void setAnotherFee(Fee anotherFee) {
57         this.anotherFee = anotherFee;
58     }
59     
60     public Qux getQux() {
61         return qux;
62     }
63     
64     public void setQux(Qux qux) {
65         this.qux = qux;
66     }
67     
68     public FooComponent getCompon() {
69         return compon;
70     }
71     
72     public void setCompon(FooComponent compon) {
73         this.compon = compon;
74     }
75     
76     /**
77      * Returns the count.
78      * @return int
79      */

80     public int getCount() {
81         return count;
82     }
83
84     /**
85      * Sets the count.
86      * @param count The count to set
87      */

88     public void setCount(int count) {
89         this.count = count;
90     }
91
92 }
93
94
95
96
97
98
99
Popular Tags