1 16 package net.sf.dozer.util.mapping.vo.map; 17 18 import java.util.Map ; 19 20 import net.sf.dozer.util.mapping.vo.BaseTestObject; 21 import net.sf.dozer.util.mapping.vo.TestObject; 22 23 28 public class PropertyToMap extends BaseTestObject { 29 30 private String stringProperty; 31 private String stringProperty2; 32 private String nullStringProperty; 33 private String stringProperty3; 34 private String stringProperty4; 35 private String stringProperty5; 36 private String excludeMe; 37 private Map reverseMap; 38 private String reverseClassLevelMapString; 39 private TestObject testObject; 40 private String integerProperty; 41 42 public String getStringProperty() { 43 return stringProperty; 44 } 45 46 public void setStringProperty(String stringProperty) { 47 this.stringProperty = stringProperty; 48 } 49 50 public String getStringProperty2() { 51 return stringProperty2; 52 } 53 54 public void addStringProperty2(String stringProperty2) { 55 this.stringProperty2 = stringProperty2; 56 } 57 58 public String getNullStringProperty() { 59 return nullStringProperty; 60 } 61 62 public void setNullStringProperty(String nullStringProperty) { 63 this.nullStringProperty = nullStringProperty; 64 } 65 66 public String getStringProperty3() { 67 return stringProperty3; 68 } 69 70 public void setStringProperty3(String stringProperty3) { 71 this.stringProperty3 = stringProperty3; 72 } 73 74 public String getStringProperty4() { 75 return stringProperty4; 76 } 77 78 public void setStringProperty4(String stringProperty4) { 79 this.stringProperty4 = stringProperty4; 80 } 81 82 public String getStringProperty5() { 83 return stringProperty5; 84 } 85 86 public void setStringProperty5(String stringProperty5) { 87 this.stringProperty5 = stringProperty5; 88 } 89 90 public String getExcludeMe() { 91 return excludeMe; 92 } 93 94 public void setExcludeMe(String excludeMe) { 95 this.excludeMe = excludeMe; 96 } 97 98 public Map getReverseMap() { 99 return reverseMap; 100 } 101 102 public void setReverseMap(Map reverseMap) { 103 this.reverseMap = reverseMap; 104 } 105 106 public String getReverseClassLevelMapString() { 107 return reverseClassLevelMapString; 108 } 109 110 public void setReverseClassLevelMapString(String reverseClassLevelMapString) { 111 this.reverseClassLevelMapString = reverseClassLevelMapString; 112 } 113 114 public TestObject getTestObject() { 115 return testObject; 116 } 117 118 public void setTestObject(TestObject testObject) { 119 this.testObject = testObject; 120 } 121 122 public String getIntegerProperty() { 123 return integerProperty; 124 } 125 126 public void setIntegerProperty(String integerProperty) { 127 this.integerProperty = integerProperty; 128 } 129 130 131 } 132 | Popular Tags |