KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ojb > odmg > shared > TestClassA


1 package org.apache.ojb.odmg.shared;
2
3 import java.io.Serializable JavaDoc;
4 import java.util.Locale JavaDoc;
5
6 public class TestClassA implements Serializable JavaDoc
7 {
8     private String JavaDoc oid;
9     private String JavaDoc value1;
10     private String JavaDoc value2;
11     private int value3;
12     private Locale JavaDoc locale = Locale.GERMANY;
13
14     private String JavaDoc boid;
15     private TestClassB b;
16     /**
17      * Gets the value1.
18      * @return Returns a String
19      */

20     public String JavaDoc getValue1()
21     {
22         return value1;
23     }
24
25     /**
26      * Sets the value1.
27      * @param value1 The value1 to set
28      */

29     public void setValue1(String JavaDoc value1)
30     {
31         this.value1 = value1;
32     }
33
34     /**
35      * Gets the value2.
36      * @return Returns a String
37      */

38     public String JavaDoc getValue2()
39     {
40         return value2;
41     }
42
43     /**
44      * Sets the value2.
45      * @param value2 The value2 to set
46      */

47     public void setValue2(String JavaDoc value2)
48     {
49         this.value2 = value2;
50     }
51
52     /**
53      * Gets the value3.
54      * @return Returns a int
55      */

56     public int getValue3()
57     {
58         return value3;
59     }
60
61     /**
62      * Sets the value3.
63      * @param value3 The value3 to set
64      */

65     public void setValue3(int value3)
66     {
67         this.value3 = value3;
68     }
69
70     /**
71      * Gets the b.
72      * @return Returns a TestClassB
73      */

74     public TestClassB getB()
75     {
76         return b;
77     }
78
79     /**
80      * Sets the b.
81      * @param b The b to set
82      */

83     public void setB(TestClassB b)
84     {
85         this.b = b;
86     }
87
88     /**
89      * Gets the oid.
90      * @return Returns a String
91      */

92     public String JavaDoc getOid()
93     {
94         return oid;
95     }
96
97     /**
98      * Sets the oid.
99      * @param oid The oid to set
100      */

101     public void setOid(String JavaDoc oid)
102     {
103         this.oid = oid;
104     }
105
106     /**
107      * Gets the bOid.
108      * @return Returns a String
109      */

110     public String JavaDoc getBoid()
111     {
112         return boid;
113     }
114
115     /**
116      * Sets the bOid.
117      * @param bOid The bOid to set
118      */

119     public void setBoid(String JavaDoc boid)
120     {
121         this.boid = boid;
122     }
123
124     public Locale JavaDoc getLocale()
125     {
126         return locale;
127     }
128
129     public void setLocale(Locale JavaDoc locale)
130     {
131         this.locale = locale;
132     }
133 }
134
Popular Tags