KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > inheritance > AnotherSubClassPrime


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.inheritance;
17
18
19 public class AnotherSubClassPrime extends IntermediateClass {
20
21     private String JavaDoc subAttribute2;
22     private java.util.List JavaDoc theListOfSubClassPrime;
23     private SClassPrime sClass;
24     private SClassPrime sClass2;
25     
26     public java.util.List JavaDoc getTheListOfSubClassPrime() {
27         return theListOfSubClassPrime;
28     }
29     
30
31
32     public void setTheListOfSubClassPrime(java.util.List JavaDoc subList2) {
33         this.theListOfSubClassPrime = subList2;
34     }
35     
36
37
38     public String JavaDoc getSubAttribute2() {
39         return subAttribute2;
40     }
41     
42
43     public void setSubAttribute2(String JavaDoc subAttribute) {
44         this.subAttribute2 = subAttribute;
45     }
46
47
48
49     public SClassPrime getSClass() {
50       return sClass;
51     }
52
53
54
55     public void setSClass(SClassPrime class1) {
56       sClass = class1;
57     }
58
59
60
61     public SClassPrime getSClass2() {
62       return sClass2;
63     }
64
65
66
67     public void setSClass2(SClassPrime class2) {
68       sClass2 = class2;
69     }
70     
71     
72     
73 }
74
Popular Tags