1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.dbutils;
18
19
20
21
22 public class TestBean {
23
24 private String one = null;
25
26 private String two = null;
27
28 private String three = null;
29
30 private int intTest = 0;
31
32 private Integer integerTest = new Integer(0);
33
34 private String doNotSet = "not set";
35
36
37
38
39
40 private int nullPrimitiveTest = 7;
41
42
43
44
45
46 private Object nullObjectTest = "overwrite";
47
48
49
50
51
52 private String notDate = "not a date";
53
54
55
56
57
58
59 private double columnProcessorDoubleTest = -1;
60
61
62
63
64 public TestBean() {
65 super();
66 }
67
68 public String getOne() {
69 return one;
70 }
71
72 public String getThree() {
73 return three;
74 }
75
76 public String getTwo() {
77 return two;
78 }
79
80 public void setOne(String string) {
81 one = string;
82 }
83
84 public void setThree(String string) {
85 three = string;
86 }
87
88 public void setTwo(String string) {
89 two = string;
90 }
91
92 public String getDoNotSet() {
93 return doNotSet;
94 }
95
96 public void setDoNotSet(String string) {
97 doNotSet = string;
98 }
99
100 public Integer getIntegerTest() {
101 return integerTest;
102 }
103
104 public int getIntTest() {
105 return intTest;
106 }
107
108 public void setIntegerTest(Integer integer) {
109 integerTest = integer;
110 }
111
112 public void setIntTest(int i) {
113 intTest = i;
114 }
115
116 public Object getNullObjectTest() {
117 return nullObjectTest;
118 }
119
120 public int getNullPrimitiveTest() {
121 return nullPrimitiveTest;
122 }
123
124 public void setNullObjectTest(Object object) {
125 nullObjectTest = object;
126 }
127
128 public void setNullPrimitiveTest(int i) {
129 nullPrimitiveTest = i;
130 }
131
132 public String getNotDate() {
133 return notDate;
134 }
135
136 public void setNotDate(String string) {
137 notDate = string;
138 }
139
140 public double getColumnProcessorDoubleTest() {
141 return columnProcessorDoubleTest;
142 }
143
144 public void setColumnProcessorDoubleTest(double d) {
145 columnProcessorDoubleTest = d;
146 }
147
148 }