1 16 package net.sf.dozer.util.mapping.vo.deep; 17 18 import java.util.List ; 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 29 public class House extends BaseTestObject { 30 private List rooms; 31 private Person owner; 32 private int price; 33 private Van van; 34 private Address address; 35 private MetalThingyIF thingy; 36 private List 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 getRooms() { 63 return rooms; 64 } 65 66 public void setRooms(List 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 getCustomSetGetMethod() { 87 return customSetGetMethod; 88 } 89 90 public void setCustomSetGetMethod(List customSetMethod) { 91 this.customSetGetMethod = customSetMethod; 92 } 93 } 94 | Popular Tags |