1
2
3
4
5
6
7
8
9
10
11 package org.csveed.test.model;
12
13 import java.util.Date;
14
15
16
17
18 public class BeanVariousNotAnnotated {
19
20
21 private String ignoreMe;
22
23
24 private String txt;
25
26
27 private Integer year;
28
29
30 private Double number;
31
32
33 private Date date;
34
35
36 private Date yearMonth;
37
38
39 private BeanSimple simple;
40
41
42
43
44
45
46 public String getTxt() {
47 return txt;
48 }
49
50
51
52
53
54
55
56 public void setTxt(String txt) {
57 this.txt = txt;
58 }
59
60
61
62
63
64
65 public Integer getYear() {
66 return year;
67 }
68
69
70
71
72
73
74
75 public void setYear(Integer year) {
76 this.year = year;
77 }
78
79
80
81
82
83
84 public Double getNumber() {
85 return number;
86 }
87
88
89
90
91
92
93
94 public void setNumber(Double number) {
95 this.number = number;
96 }
97
98
99
100
101
102
103 public Date getDate() {
104 return date;
105 }
106
107
108
109
110
111
112
113 public void setDate(Date date) {
114 this.date = date;
115 }
116
117
118
119
120
121
122 public Date getYearMonth() {
123 return yearMonth;
124 }
125
126
127
128
129
130
131
132 public void setYearMonth(Date yearMonth) {
133 this.yearMonth = yearMonth;
134 }
135
136
137
138
139
140
141 public String getIgnoreMe() {
142 return ignoreMe;
143 }
144
145
146
147
148
149
150
151 public void setIgnoreMe(String ignoreMe) {
152 this.ignoreMe = ignoreMe;
153 }
154
155
156
157
158
159
160 public BeanSimple getSimple() {
161 return simple;
162 }
163
164
165
166
167
168
169
170 public void setSimple(BeanSimple simple) {
171 this.simple = simple;
172 }
173 }