01: /*
02: * Copyright 2005-2007 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package net.sf.dozer.util.mapping.vo;
17:
18: import java.math.BigDecimal;
19: import java.util.Calendar;
20:
21: /**
22: * @author garsombke.franz
23: * @author sullins.ben
24: * @author tierney.matt
25: */
26: public class SimpleObj extends BaseTestObject {
27:
28: private String field1;
29: private Integer field2;
30: private BigDecimal field3;
31: private Double field4;
32: private Calendar field5;
33: private String field6;
34:
35: public String getField1() {
36: return field1;
37: }
38:
39: public void setField1(String field1) {
40: this .field1 = field1;
41: }
42:
43: public Integer getField2() {
44: return field2;
45: }
46:
47: public void setField2(Integer field2) {
48: this .field2 = field2;
49: }
50:
51: public BigDecimal getField3() {
52: return field3;
53: }
54:
55: public void setField3(BigDecimal field3) {
56: this .field3 = field3;
57: }
58:
59: public Double getField4() {
60: return field4;
61: }
62:
63: public void setField4(Double field4) {
64: this .field4 = field4;
65: }
66:
67: public Calendar getField5() {
68: return field5;
69: }
70:
71: public void setField5(Calendar field5) {
72: this .field5 = field5;
73: }
74:
75: public String getField6() {
76: return field6;
77: }
78:
79: public void setField6(String field6) {
80: this.field6 = field6;
81: }
82: }
|