KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
19  * @author garsombke.franz
20  * @author sullins.ben
21  * @author tierney.matt
22  *
23  */

24 public class InsideTestObjectPrime extends BaseTestObject {
25
26   private String JavaDoc labelPrime;
27   private MyPrimitiveWrapper wrapper;
28   private MyPrimitiveWrapper anotherWrapper;
29   private String JavaDoc createdByFactoryName;
30   private NoExtendBaseObject copyByReference;
31   private String JavaDoc deepInterfaceString;
32   private String JavaDoc myField;
33
34   public InsideTestObjectPrime() {
35     super();
36   }
37
38   /**
39    * @return Returns the wrapper.
40    */

41   public MyPrimitiveWrapper getWrapper() {
42     return wrapper;
43   }
44
45   /**
46    * @param wrapper The wrapper to set.
47    */

48   public void setWrapper(MyPrimitiveWrapper wrapper) {
49     this.wrapper = wrapper;
50   }
51
52   /**
53    * @return Returns the labelPrime.
54    */

55   public String JavaDoc getLabelPrime() {
56     return labelPrime;
57   }
58
59   /**
60    * @param labelPrime The labelPrime to set.
61    */

62   public void setLabelPrime(String JavaDoc labelPrime) {
63     this.labelPrime = labelPrime;
64   }
65
66   /**
67    * @return Returns the anotherWrapper.
68    */

69   public MyPrimitiveWrapper getAnotherWrapper() {
70     return anotherWrapper;
71   }
72
73   /**
74    * @param anotherWrapper The anotherWrapper to set.
75    */

76   public void setAnotherWrapper(MyPrimitiveWrapper anotherWrapper) {
77     this.anotherWrapper = anotherWrapper;
78   }
79
80   public String JavaDoc getCreatedByFactoryName() {
81     return createdByFactoryName;
82   }
83
84   public void setCreatedByFactoryName(String JavaDoc createdByFactoryName) {
85     this.createdByFactoryName = createdByFactoryName;
86   }
87
88   public NoExtendBaseObject getCopyByReference() {
89     return copyByReference;
90   }
91
92   public void setCopyByReference(NoExtendBaseObject copyByReference) {
93     this.copyByReference = copyByReference;
94   }
95   
96   public static InsideTestObjectPrime createMethod() {
97     InsideTestObjectPrime itop = new InsideTestObjectPrime ();
98     itop.setMyField("myField");
99     return itop;
100   }
101
102   public String JavaDoc getMyField() {
103     return myField;
104   }
105
106   public void setMyField(String JavaDoc myField) {
107     this.myField = myField;
108   }
109
110   public String JavaDoc getDeepInterfaceString() {
111     return deepInterfaceString;
112   }
113
114   public void setDeepInterfaceString(String JavaDoc deepInterfaceString) {
115     this.deepInterfaceString = deepInterfaceString;
116   }
117 }
118
Popular Tags