KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > wcf > convert > ConverterTestBean


1 package com.tonbeller.wcf.convert;
2
3 import java.util.Date JavaDoc;
4
5 /**
6  * Created on 12.11.2002
7  *
8  * @author av
9  */

10 public class ConverterTestBean {
11
12   String JavaDoc stringValue;
13   int intValue;
14   boolean booleanValue;
15   double doubleValue;
16   Date JavaDoc dateValue;
17
18   String JavaDoc[] stringArray;
19   int[] intArray;
20   boolean[] booleanArray;
21   double[] doubleArray;
22   Date JavaDoc[] dateArray;
23
24
25
26   /**
27    * Returns the booleanArray.
28    * @return boolean[]
29    */

30   public boolean[] getBooleanArray() {
31     return booleanArray;
32   }
33
34   /**
35    * Returns the booleanValue.
36    * @return boolean
37    */

38   public boolean isBooleanValue() {
39     return booleanValue;
40   }
41
42   /**
43    * Returns the doubleArray.
44    * @return double[]
45    */

46   public double[] getDoubleArray() {
47     return doubleArray;
48   }
49
50   /**
51    * Returns the doubleValue.
52    * @return double
53    */

54   public double getDoubleValue() {
55     return doubleValue;
56   }
57
58   /**
59    * Returns the intArray.
60    * @return int[]
61    */

62   public int[] getIntArray() {
63     return intArray;
64   }
65
66   /**
67    * Returns the intValue.
68    * @return int
69    */

70   public int getIntValue() {
71     return intValue;
72   }
73
74   /**
75    * Returns the stringArray.
76    * @return String[]
77    */

78   public String JavaDoc[] getStringArray() {
79     return stringArray;
80   }
81
82   /**
83    * Returns the stringValue.
84    * @return String
85    */

86   public String JavaDoc getStringValue() {
87     return stringValue;
88   }
89
90   /**
91    * Sets the booleanArray.
92    * @param booleanArray The booleanArray to set
93    */

94   public void setBooleanArray(boolean[] booleanArray) {
95     this.booleanArray = booleanArray;
96   }
97
98   /**
99    * Sets the booleanValue.
100    * @param booleanValue The booleanValue to set
101    */

102   public void setBooleanValue(boolean booleanValue) {
103     this.booleanValue = booleanValue;
104   }
105
106   /**
107    * Sets the doubleArray.
108    * @param doubleArray The doubleArray to set
109    */

110   public void setDoubleArray(double[] doubleArray) {
111     this.doubleArray = doubleArray;
112   }
113
114   /**
115    * Sets the doubleValue.
116    * @param doubleValue The doubleValue to set
117    */

118   public void setDoubleValue(double doubleValue) {
119     this.doubleValue = doubleValue;
120   }
121
122   /**
123    * Sets the intArray.
124    * @param intArray The intArray to set
125    */

126   public void setIntArray(int[] intArray) {
127     this.intArray = intArray;
128   }
129
130   /**
131    * Sets the intValue.
132    * @param intValue The intValue to set
133    */

134   public void setIntValue(int intValue) {
135     this.intValue = intValue;
136   }
137
138   /**
139    * Sets the stringArray.
140    * @param stringArray The stringArray to set
141    */

142   public void setStringArray(String JavaDoc[] stringArray) {
143     this.stringArray = stringArray;
144   }
145
146   /**
147    * Sets the stringValue.
148    * @param stringValue The stringValue to set
149    */

150   public void setStringValue(String JavaDoc stringValue) {
151     this.stringValue = stringValue;
152   }
153
154   /**
155    * Returns the dateArray.
156    * @return Date[]
157    */

158   public Date JavaDoc[] getDateArray() {
159     return dateArray;
160   }
161
162   /**
163    * Returns the dateValue.
164    * @return Date
165    */

166   public Date JavaDoc getDateValue() {
167     return dateValue;
168   }
169
170   /**
171    * Sets the dateArray.
172    * @param dateArray The dateArray to set
173    */

174   public void setDateArray(Date JavaDoc[] dateArray) {
175     this.dateArray = dateArray;
176   }
177
178   /**
179    * Sets the dateValue.
180    * @param dateValue The dateValue to set
181    */

182   public void setDateValue(Date JavaDoc dateValue) {
183     this.dateValue = dateValue;
184   }
185
186 }
187
Popular Tags