| 1 16 package net.sf.dozer.util.mapping.vo; 17 18 import java.math.BigDecimal ; 19 import java.util.Date ; 20 21 27 public class TestObjectPrime2 extends BaseTestObject { 28 private String one; 29 private Integer two; 30 private InsideTestObject three; 31 private InsideTestObject insideTestObject; 32 private java.util.List equalNamedList; 33 private java.util.List unequalNamedList; 34 private int thePrimitive; 35 private int theMappedPrimitive; 36 private int[] anArray; 37 private Integer [] arrayForLists; 38 private BigDecimal bigDecimalToInt; 39 private int intToBigDecimal; 40 private Date date; 41 42 public Date getDate() { 43 return date; 44 } 45 46 public void setDate(Date date) { 47 this.date = date; 48 } 49 50 public InsideTestObject getInsideTestObject() { 51 return insideTestObject; 52 } 53 54 public void setInsideTestObject(InsideTestObject insideTestObject) { 55 this.insideTestObject = insideTestObject; 56 } 57 58 public int getThePrimitive() { 59 return thePrimitive; 60 } 61 62 public void setThePrimitive(int primitive) { 63 thePrimitive = primitive; 64 } 65 66 public java.util.List getEqualNamedList() { 67 return equalNamedList; 68 } 69 70 public void setEqualNamedList(java.util.List equalNamedList) { 71 this.equalNamedList = equalNamedList; 72 } 73 74 public String getOne() { 75 return one; 76 } 77 78 public void setOne(String one) { 79 this.one = one; 80 } 81 82 public InsideTestObject getThree() { 83 return three; 84 } 85 86 public void setThree(InsideTestObject three) { 87 this.three = three; 88 } 89 90 public Integer getTwo() { 91 return two; 92 } 93 94 public void setTwo(Integer two) { 95 this.two = two; 96 } 97 98 public java.util.List getUnequalNamedList() { 99 return unequalNamedList; 100 } 101 102 public void setUnequalNamedList(java.util.List unequalNamedList) { 103 this.unequalNamedList = unequalNamedList; 104 } 105 106 public int getTheMappedPrimitive() { 107 return theMappedPrimitive; 108 } 109 110 public void setTheMappedPrimitive(int mappedPrimitive) { 111 theMappedPrimitive = mappedPrimitive; 112 } 113 114 public int[] getAnArray() { 115 return anArray; 116 } 117 118 public void setAnArray(int[] anArray) { 119 this.anArray = anArray; 120 } 121 122 public Integer [] getArrayForLists() { 123 return arrayForLists; 124 } 125 126 public void setArrayForLists(Integer [] arrayForLists) { 127 this.arrayForLists = arrayForLists; 128 } 129 130 public BigDecimal getBigDecimalToInt() { 131 return bigDecimalToInt; 132 } 133 134 public void setBigDecimalToInt(BigDecimal bigDecimalToInt) { 135 this.bigDecimalToInt = bigDecimalToInt; 136 } 137 138 public int getIntToBigDecimal() { 139 return intToBigDecimal; 140 } 141 142 public void setIntToBigDecimal(int intToBigDecimal) { 143 this.intToBigDecimal = intToBigDecimal; 144 } 145 } 146 | Popular Tags |