KickJava   Java API By Example, From Geeks To Geeks.

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


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

28 public class NoCustomMappingsObject extends BaseTestObject {
29   private String JavaDoc stringDataType;
30   private Map JavaDoc mapDataType;
31   private Integer JavaDoc three;
32   private long four;
33   private float five;
34   private Double JavaDoc six;
35   private int seven;
36   private Set JavaDoc setDataType;
37   private Date JavaDoc date;
38
39   public NoCustomMappingsObject() {
40   }
41
42   public NoCustomMappingsObject(String JavaDoc input) {
43     this.stringDataType = input;
44   }
45
46   public void setStringDataType(String JavaDoc one) {
47     this.stringDataType = one;
48   }
49
50   public String JavaDoc getStringDataType() {
51     return stringDataType;
52   }
53
54   public Map JavaDoc getMapDataType() {
55     return mapDataType;
56   }
57
58   public void setMapDataType(Map JavaDoc mapDataType) {
59     this.mapDataType = mapDataType;
60   }
61
62   public float getFive() {
63     return five;
64   }
65
66   public long getFour() {
67     return four;
68   }
69
70   public Double JavaDoc getSix() {
71     return six;
72   }
73
74   public Integer JavaDoc getThree() {
75     return three;
76   }
77
78   public void setThree(Integer JavaDoc three) {
79     this.three = three;
80   }
81
82   public void setSix(Double JavaDoc six) {
83     this.six = six;
84   }
85
86   public void setFour(long four) {
87     this.four = four;
88   }
89
90   public void setFive(float five) {
91     this.five = five;
92   }
93
94   public int getSeven() {
95     return seven;
96   }
97
98   public void setSeven(int seven) {
99     this.seven = seven;
100   }
101
102   public Set JavaDoc getSetDataType() {
103     return setDataType;
104   }
105
106   public void setSetDataType(Set JavaDoc setDataType) {
107     this.setDataType = setDataType;
108   }
109
110   public Date JavaDoc getDate() {
111     return date;
112   }
113
114   public void setDate(Date JavaDoc date) {
115     this.date = date;
116   }
117 }
118
Popular Tags