KickJava   Java API By Example, From Geeks To Geeks.

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


1 //$Id: Lower.java,v 1.1 2004/09/26 05:18:25 oneovthafew Exp $
2
package org.hibernate.test.legacy;
3
4 import java.util.List JavaDoc;
5 import java.util.Set JavaDoc;
6
7
8 public class Lower extends Top {
9     private int intprop;
10     private String JavaDoc foo;
11     private Set JavaDoc set;
12     private List JavaDoc bag;
13     private Top another;
14     private Lower yetanother;
15     private Po mypo;
16     /**
17      * Returns the intprop.
18      * @return int
19      */

20     public int getIntprop() {
21         return intprop;
22     }
23     
24     /**
25      * Sets the intprop.
26      * @param intprop The intprop to set
27      */

28     public void setIntprop(int intprop) {
29         this.intprop = intprop;
30     }
31     
32     /**
33      * Returns the foo.
34      * @return String
35      */

36     public String JavaDoc getFoo() {
37         return foo;
38     }
39     
40     /**
41      * Sets the foo.
42      * @param foo The foo to set
43      */

44     public void setFoo(String JavaDoc foo) {
45         this.foo = foo;
46     }
47     
48     /**
49      * Returns the set.
50      * @return Set
51      */

52     public Set JavaDoc getSet() {
53         return set;
54     }
55     
56     /**
57      * Sets the set.
58      * @param set The set to set
59      */

60     public void setSet(Set JavaDoc set) {
61         this.set = set;
62     }
63     
64     /**
65      * Returns the another.
66      * @return Simple
67      */

68     public Top getAnother() {
69         return another;
70     }
71     
72     /**
73      * Returns the yetanother.
74      * @return LessSimple
75      */

76     public Lower getYetanother() {
77         return yetanother;
78     }
79     
80     /**
81      * Sets the another.
82      * @param another The another to set
83      */

84     public void setAnother(Top another) {
85         this.another = another;
86     }
87     
88     /**
89      * Sets the yetanother.
90      * @param yetanother The yetanother to set
91      */

92     public void setYetanother(Lower yetanother) {
93         this.yetanother = yetanother;
94     }
95     
96     /**
97      * Returns the bag.
98      * @return List
99      */

100     public List JavaDoc getBag() {
101         return bag;
102     }
103     
104     /**
105      * Sets the bag.
106      * @param bag The bag to set
107      */

108     public void setBag(List JavaDoc bag) {
109         this.bag = bag;
110     }
111     
112     /**
113      * Returns the mypo.
114      * @return Po
115      */

116     public Po getMypo() {
117         return mypo;
118     }
119     
120     /**
121      * Sets the mypo.
122      * @param mypo The mypo to set
123      */

124     public void setMypo(Po mypo) {
125         this.mypo = mypo;
126     }
127     
128 }
129
130
131
132
133
134
135
Popular Tags