KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > SimpleObj


1 /*
2  * Copyright 2005-2007 the original author or authors.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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 JavaDoc;
19 import java.util.Calendar JavaDoc;
20
21 import net.sf.dozer.util.mapping.vo.BaseTestObject;
22
23 /**
24  * @author garsombke.franz
25  * @author sullins.ben
26  * @author tierney.matt
27  */

28 public class SimpleObj extends BaseTestObject {
29   
30   private String JavaDoc field1;
31   private Integer JavaDoc field2;
32   private BigDecimal JavaDoc field3;
33   private Double JavaDoc field4;
34   private Calendar JavaDoc field5;
35   private String JavaDoc field6;
36   
37   public String JavaDoc getField1() {
38     return field1;
39   }
40   public void setField1(String JavaDoc field1) {
41     this.field1 = field1;
42   }
43   public Integer JavaDoc getField2() {
44     return field2;
45   }
46   public void setField2(Integer JavaDoc field2) {
47     this.field2 = field2;
48   }
49   public BigDecimal JavaDoc getField3() {
50     return field3;
51   }
52   public void setField3(BigDecimal JavaDoc field3) {
53     this.field3 = field3;
54   }
55   public Double JavaDoc getField4() {
56     return field4;
57   }
58   public void setField4(Double JavaDoc field4) {
59     this.field4 = field4;
60   }
61   public Calendar JavaDoc getField5() {
62     return field5;
63   }
64   public void setField5(Calendar JavaDoc field5) {
65     this.field5 = field5;
66   }
67   public String JavaDoc getField6() {
68     return field6;
69   }
70   public void setField6(String JavaDoc field6) {
71     this.field6 = field6;
72   }
73 }
74
Popular Tags