KickJava   Java API By Example, From Geeks To Geeks.

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


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.Date JavaDoc;
20
21 /**
22  * @author garsombke.franz
23  * @author sullins.ben
24  * @author tierney.matt
25  *
26  */

27 public class TestObjectPrime2 extends BaseTestObject {
28   private String JavaDoc one;
29   private Integer JavaDoc two;
30   private InsideTestObject three;
31   private InsideTestObject insideTestObject;
32   private java.util.List JavaDoc equalNamedList;
33   private java.util.List JavaDoc unequalNamedList;
34   private int thePrimitive;
35   private int theMappedPrimitive;
36   private int[] anArray;
37   private Integer JavaDoc[] arrayForLists;
38   private BigDecimal JavaDoc bigDecimalToInt;
39   private int intToBigDecimal;
40   private Date JavaDoc date;
41
42   public Date JavaDoc getDate() {
43     return date;
44   }
45
46   public void setDate(Date JavaDoc date) {
47     this.date = date;
48   }
49
50   public InsideTestObject getInsideTestObject() {
51     return insideTestObject;
52   }
53
54   public void setInsideTestObject(InsideTestObject insideTestObject) {
55     this.insideTestObject = insideTestObject;
56   }
57
58   public int getThePrimitive() {
59     return thePrimitive;
60   }
61
62   public void setThePrimitive(int primitive) {
63     thePrimitive = primitive;
64   }
65
66   public java.util.List JavaDoc getEqualNamedList() {
67     return equalNamedList;
68   }
69
70   public void setEqualNamedList(java.util.List JavaDoc equalNamedList) {
71     this.equalNamedList = equalNamedList;
72   }
73
74   public String JavaDoc getOne() {
75     return one;
76   }
77
78   public void setOne(String JavaDoc one) {
79     this.one = one;
80   }
81
82   public InsideTestObject getThree() {
83     return three;
84   }
85
86   public void setThree(InsideTestObject three) {
87     this.three = three;
88   }
89
90   public Integer JavaDoc getTwo() {
91     return two;
92   }
93
94   public void setTwo(Integer JavaDoc two) {
95     this.two = two;
96   }
97
98   public java.util.List JavaDoc getUnequalNamedList() {
99     return unequalNamedList;
100   }
101
102   public void setUnequalNamedList(java.util.List JavaDoc unequalNamedList) {
103     this.unequalNamedList = unequalNamedList;
104   }
105
106   public int getTheMappedPrimitive() {
107     return theMappedPrimitive;
108   }
109
110   public void setTheMappedPrimitive(int mappedPrimitive) {
111     theMappedPrimitive = mappedPrimitive;
112   }
113
114   public int[] getAnArray() {
115     return anArray;
116   }
117
118   public void setAnArray(int[] anArray) {
119     this.anArray = anArray;
120   }
121
122   public Integer JavaDoc[] getArrayForLists() {
123     return arrayForLists;
124   }
125
126   public void setArrayForLists(Integer JavaDoc[] arrayForLists) {
127     this.arrayForLists = arrayForLists;
128   }
129
130   public BigDecimal JavaDoc getBigDecimalToInt() {
131     return bigDecimalToInt;
132   }
133
134   public void setBigDecimalToInt(BigDecimal JavaDoc bigDecimalToInt) {
135     this.bigDecimalToInt = bigDecimalToInt;
136   }
137
138   public int getIntToBigDecimal() {
139     return intToBigDecimal;
140   }
141
142   public void setIntToBigDecimal(int intToBigDecimal) {
143     this.intToBigDecimal = intToBigDecimal;
144   }
145 }
146
Popular Tags