KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > map > PropertyToMap


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

28 public class PropertyToMap extends BaseTestObject {
29
30   private String JavaDoc stringProperty;
31   private String JavaDoc stringProperty2;
32   private String JavaDoc nullStringProperty;
33   private String JavaDoc stringProperty3;
34   private String JavaDoc stringProperty4;
35   private String JavaDoc stringProperty5;
36   private String JavaDoc excludeMe;
37   private Map JavaDoc reverseMap;
38   private String JavaDoc reverseClassLevelMapString;
39   private TestObject testObject;
40   private String JavaDoc integerProperty;
41
42   public String JavaDoc getStringProperty() {
43     return stringProperty;
44   }
45
46   public void setStringProperty(String JavaDoc stringProperty) {
47     this.stringProperty = stringProperty;
48   }
49
50   public String JavaDoc getStringProperty2() {
51     return stringProperty2;
52   }
53
54   public void addStringProperty2(String JavaDoc stringProperty2) {
55     this.stringProperty2 = stringProperty2;
56   }
57
58   public String JavaDoc getNullStringProperty() {
59     return nullStringProperty;
60   }
61
62   public void setNullStringProperty(String JavaDoc nullStringProperty) {
63     this.nullStringProperty = nullStringProperty;
64   }
65
66   public String JavaDoc getStringProperty3() {
67     return stringProperty3;
68   }
69
70   public void setStringProperty3(String JavaDoc stringProperty3) {
71     this.stringProperty3 = stringProperty3;
72   }
73
74   public String JavaDoc getStringProperty4() {
75     return stringProperty4;
76   }
77
78   public void setStringProperty4(String JavaDoc stringProperty4) {
79     this.stringProperty4 = stringProperty4;
80   }
81
82   public String JavaDoc getStringProperty5() {
83     return stringProperty5;
84   }
85
86   public void setStringProperty5(String JavaDoc stringProperty5) {
87     this.stringProperty5 = stringProperty5;
88   }
89
90   public String JavaDoc getExcludeMe() {
91     return excludeMe;
92   }
93
94   public void setExcludeMe(String JavaDoc excludeMe) {
95     this.excludeMe = excludeMe;
96   }
97
98   public Map JavaDoc getReverseMap() {
99     return reverseMap;
100   }
101
102   public void setReverseMap(Map JavaDoc reverseMap) {
103     this.reverseMap = reverseMap;
104   }
105
106   public String JavaDoc getReverseClassLevelMapString() {
107     return reverseClassLevelMapString;
108   }
109
110   public void setReverseClassLevelMapString(String JavaDoc reverseClassLevelMapString) {
111     this.reverseClassLevelMapString = reverseClassLevelMapString;
112   }
113
114   public TestObject getTestObject() {
115     return testObject;
116   }
117
118   public void setTestObject(TestObject testObject) {
119     this.testObject = testObject;
120   }
121
122   public String JavaDoc getIntegerProperty() {
123     return integerProperty;
124   }
125
126   public void setIntegerProperty(String JavaDoc integerProperty) {
127     this.integerProperty = integerProperty;
128   }
129
130   
131 }
132
Popular Tags