KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > deep > DestDeepObj


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.deep;
17
18 import net.sf.dozer.util.mapping.vo.BaseTestObject;
19 import java.util.List JavaDoc;
20 import net.sf.dozer.util.mapping.vo.FurtherTestObject;
21
22 /**
23  * @author garsombke.franz
24  * @author sullins.ben
25  * @author tierney.matt
26  */

27 public class DestDeepObj extends BaseTestObject {
28
29   private String JavaDoc dest1;
30   private Integer JavaDoc dest2;
31   private int dest3;
32   private List JavaDoc dest4;
33   private String JavaDoc dest5;
34   private FurtherTestObject dest6;
35   private String JavaDoc sameNameField;
36   private List JavaDoc hintList;
37   private List JavaDoc hintList2;
38
39   public String JavaDoc getDest1() {
40     return dest1;
41   }
42   public Integer JavaDoc getDest2() {
43     return dest2;
44   }
45   public int getDest3() {
46     return dest3;
47   }
48   public void setDest3(int dest3) {
49     this.dest3 = dest3;
50   }
51   public void setDest2(Integer JavaDoc dest2) {
52     this.dest2 = dest2;
53   }
54   public void setDest1(String JavaDoc dest1) {
55     this.dest1 = dest1;
56   }
57   public String JavaDoc getSameNameField() {
58     return sameNameField;
59   }
60   public void setSameNameField(String JavaDoc sameNameField) {
61     this.sameNameField = sameNameField;
62   }
63   public List JavaDoc getDest4() {
64     return dest4;
65   }
66   public void setDest4(List JavaDoc dest4) {
67     this.dest4 = dest4;
68   }
69   public String JavaDoc getDest5() {
70     return dest5;
71   }
72   public void setDest5(String JavaDoc dest5) {
73     this.dest5 = dest5;
74   }
75   public FurtherTestObject getDest6() {
76     return dest6;
77   }
78   public void setDest6(FurtherTestObject dest6) {
79     this.dest6 = dest6;
80   }
81   public List JavaDoc getHintList() {
82     return hintList;
83   }
84   public void setHintList(List JavaDoc hintList) {
85     this.hintList = hintList;
86   }
87   public List JavaDoc getHintList2() {
88     return hintList2;
89   }
90   public void setHintList2(List JavaDoc hintList2) {
91     this.hintList2 = hintList2;
92   }
93 }
94
Popular Tags