1 16 package net.sf.dozer.util.mapping.vo; 17 18 import net.sf.dozer.util.mapping.vo.deep.House; 19 20 26 public class InsideTestObject extends BaseTestObject { 27 28 private String label; 29 private Integer wrapper; 30 private int toWrapper; 31 private String createdByFactoryName; 32 private House house; 33 private String testCreateMethod; 34 35 38 public int getToWrapper() { 39 return toWrapper; 40 } 41 42 45 public void setToWrapper(int toWrapper) { 46 this.toWrapper = toWrapper; 47 } 48 49 52 public Integer getWrapper() { 53 return wrapper; 54 } 55 56 59 public void setWrapper(Integer wrapper) { 60 this.wrapper = wrapper; 61 } 62 63 66 public String getLabel() { 67 return label; 68 } 69 70 73 public void setLabel(String label) { 74 this.label = label; 75 } 76 77 public String getCreatedByFactoryName() { 78 return createdByFactoryName; 79 } 80 81 public void setCreatedByFactoryName(String createdByFactoryName) { 82 this.createdByFactoryName = createdByFactoryName; 83 } 84 85 public static InsideTestObject createMethod() { 86 InsideTestObject itop = new InsideTestObject(); 87 itop.setTestCreateMethod("testCreateMethod"); 88 return itop; 89 } 90 91 public String getTestCreateMethod() { 92 return testCreateMethod; 93 } 94 95 public void setTestCreateMethod(String testCreateMethod) { 96 this.testCreateMethod = testCreateMethod; 97 } 98 99 public House getHouse() { 100 return house; 101 } 102 103 public void setHouse(House house) { 104 this.house = house; 105 } 106 107 } 108 | Popular Tags |