1 16 package net.sf.dozer.util.mapping.vo; 17 18 import java.util.Map ; 19 import java.util.Set ; 20 import java.util.Date ; 21 22 28 public class NoCustomMappingsObject extends BaseTestObject { 29 private String stringDataType; 30 private Map mapDataType; 31 private Integer three; 32 private long four; 33 private float five; 34 private Double six; 35 private int seven; 36 private Set setDataType; 37 private Date date; 38 39 public NoCustomMappingsObject() { 40 } 41 42 public NoCustomMappingsObject(String input) { 43 this.stringDataType = input; 44 } 45 46 public void setStringDataType(String one) { 47 this.stringDataType = one; 48 } 49 50 public String getStringDataType() { 51 return stringDataType; 52 } 53 54 public Map getMapDataType() { 55 return mapDataType; 56 } 57 58 public void setMapDataType(Map mapDataType) { 59 this.mapDataType = mapDataType; 60 } 61 62 public float getFive() { 63 return five; 64 } 65 66 public long getFour() { 67 return four; 68 } 69 70 public Double getSix() { 71 return six; 72 } 73 74 public Integer getThree() { 75 return three; 76 } 77 78 public void setThree(Integer three) { 79 this.three = three; 80 } 81 82 public void setSix(Double six) { 83 this.six = six; 84 } 85 86 public void setFour(long four) { 87 this.four = four; 88 } 89 90 public void setFive(float five) { 91 this.five = five; 92 } 93 94 public int getSeven() { 95 return seven; 96 } 97 98 public void setSeven(int seven) { 99 this.seven = seven; 100 } 101 102 public Set getSetDataType() { 103 return setDataType; 104 } 105 106 public void setSetDataType(Set setDataType) { 107 this.setDataType = setDataType; 108 } 109 110 public Date getDate() { 111 return date; 112 } 113 114 public void setDate(Date date) { 115 this.date = date; 116 } 117 } 118 | Popular Tags |