KickJava   Java API By Example, From Geeks To Geeks.

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


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