KickJava   Java API By Example, From Geeks To Geeks.

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


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

29 public class House extends BaseTestObject {
30     private List JavaDoc rooms;
31     private Person owner;
32     private int price;
33     private Van van;
34     private Address address;
35     private MetalThingyIF thingy;
36     private List JavaDoc customSetGetMethod;
37
38     public Address getAddress() {
39         return address;
40     }
41
42     public void setAddress(Address address) {
43         this.address = address;
44     }
45
46     public Person getOwner() {
47         return owner;
48     }
49
50     public void setOwner(Person owner) {
51         this.owner = owner;
52     }
53
54     public int getPrice() {
55         return price;
56     }
57
58     public void setPrice(int price) {
59         this.price = price;
60     }
61
62     public List JavaDoc getRooms() {
63         return rooms;
64     }
65
66     public void setRooms(List JavaDoc rooms) {
67         this.rooms = rooms;
68     }
69
70     public Van getVan() {
71       return van;
72     }
73
74     public void setVan(Van van) {
75       this.van = van;
76     }
77
78     public MetalThingyIF getThingy() {
79       return thingy;
80     }
81
82     public void setThingy(MetalThingyIF thingy) {
83       this.thingy = thingy;
84     }
85
86     public List JavaDoc getCustomSetGetMethod() {
87       return customSetGetMethod;
88     }
89
90     public void setCustomSetGetMethod(List JavaDoc customSetMethod) {
91       this.customSetGetMethod = customSetMethod;
92     }
93 }
94
Popular Tags