1 16 package net.sf.dozer.util.mapping.vo; 17 18 import java.math.BigDecimal ; 19 import java.sql.Timestamp ; 20 import java.util.Date ; 21 import java.util.GregorianCalendar ; 22 import java.util.List ; 23 import java.util.Set ; 24 25 26 32 public class TestObject extends BaseTestObject { 33 private String one; 34 private Integer two; 35 private InsideTestObject three; 36 private InsideTestObject insideTestObject; 37 private java.util.List equalNamedList; 38 private java.util.List unequalNamedList; 39 private int thePrimitive; 40 private int theMappedPrimitive; 41 private int[] anArray; 42 private Integer [] arrayForLists; 43 private BigDecimal bigDecimalToInt; 44 private int intToBigDecimal; 45 private Date date; 46 private GregorianCalendar calendar; 47 private NoCustomMappingsObject noMappingsObj; 48 private List hintList; 49 private Timestamp timeStamp; 50 private String dateStr; 51 private DoubleObject doubleObject; 52 private long anotherLongValue; 53 private int[] primArray; 54 private Van van; 55 private String excludeMe; 56 private MetalThingyIF carMetalThingy; 57 private String blankDate; 58 private String blankStringToLong; 59 private String createdByFactoryName; 60 private NoExtendBaseObject copyByReference; 61 private NoExtendBaseObject copyByReferenceDeep; 62 private NoExtendBaseObjectGlobalCopyByReference globalCopyByReference; 63 private Set setToArray; 64 private Set setToObjectArray; 65 private Set setToArrayWithValues; 66 private Set setToList; 67 private Set setToListWithValues; 68 private String fieldAccessible; 69 private int fieldAccessiblePrimInt; 70 private InsideTestObject fieldAccessibleComplexType; 71 private String [] stringArrayWithNullValue; 72 private String [] fieldAccessibleArrayToList; 73 private Date overloadGetField; 74 private InsideTestObject createMethodType; 75 private String excludeMeOneWay; 76 private String throwAllowedExceptionOnMap; 77 private String throwNonAllowedExceptionOnMap; 78 79 public int[] getPrimArray() { 80 return primArray; 81 } 82 83 public void setPrimArray(int[] primArray) { 84 this.primArray = primArray; 85 } 86 87 public long getAnotherLongValue() { 88 return anotherLongValue; 89 } 90 91 public void setAnotherLongValue(long longValue) { 92 anotherLongValue = longValue; 93 } 94 95 98 public Date getDate() { 99 return date; 100 } 101 102 106 public void setDate(Date date) { 107 this.date = date; 108 } 109 110 113 public InsideTestObject getInsideTestObject() { 114 return insideTestObject; 115 } 116 117 121 public void setInsideTestObject(InsideTestObject insideTestObject) { 122 this.insideTestObject = insideTestObject; 123 } 124 125 128 public int getThePrimitive() { 129 return thePrimitive; 130 } 131 132 136 public void setThePrimitive(int primitive) { 137 thePrimitive = primitive; 138 } 139 140 143 public java.util.List getEqualNamedList() { 144 return equalNamedList; 145 } 146 147 151 public void setEqualNamedList(java.util.List equalNamedList) { 152 this.equalNamedList = equalNamedList; 153 } 154 155 158 public String getOne() { 159 return one; 160 } 161 162 166 public void setOne(String one) { 167 this.one = one; 168 } 169 170 173 public InsideTestObject getThree() { 174 return three; 175 } 176 177 181 public void setThree(InsideTestObject three) { 182 this.three = three; 183 } 184 185 188 public Integer getTwo() { 189 return two; 190 } 191 192 196 public void setTwo(Integer two) { 197 this.two = two; 198 } 199 200 203 public java.util.List getUnequalNamedList() { 204 return unequalNamedList; 205 } 206 207 211 public void setUnequalNamedList(java.util.List unequalNamedList) { 212 this.unequalNamedList = unequalNamedList; 213 } 214 215 218 public int getTheMappedPrimitive() { 219 return theMappedPrimitive; 220 } 221 222 226 public void setTheMappedPrimitive(int mappedPrimitive) { 227 theMappedPrimitive = mappedPrimitive; 228 } 229 230 233 public int[] getAnArray() { 234 return anArray; 235 } 236 237 241 public void setAnArray(int[] anArray) { 242 this.anArray = anArray; 243 } 244 245 248 public Integer [] getArrayForLists() { 249 return arrayForLists; 250 } 251 252 256 public void setArrayForLists(Integer [] arrayForLists) { 257 this.arrayForLists = arrayForLists; 258 } 259 260 263 public BigDecimal getBigDecimalToInt() { 264 return bigDecimalToInt; 265 } 266 267 271 public void setBigDecimalToInt(BigDecimal bigDecimalToInt) { 272 this.bigDecimalToInt = bigDecimalToInt; 273 } 274 275 278 public int getIntToBigDecimal() { 279 return intToBigDecimal; 280 } 281 282 286 public void setIntToBigDecimal(int intToBigDecimal) { 287 this.intToBigDecimal = intToBigDecimal; 288 } 289 290 293 public GregorianCalendar getCalendar() { 294 return calendar; 295 } 296 297 301 public void setCalendar(GregorianCalendar calendar) { 302 this.calendar = calendar; 303 } 304 305 public NoCustomMappingsObject getNoMappingsObj() { 306 return noMappingsObj; 307 } 308 309 public void setNoMappingsObj(NoCustomMappingsObject noMappingsObj) { 310 this.noMappingsObj = noMappingsObj; 311 } 312 313 public List getHintList() { 314 return hintList; 315 } 316 317 public void setHintList(List hintList) { 318 this.hintList = hintList; 319 } 320 321 324 public Timestamp getTimeStamp() { 325 return timeStamp; 326 } 327 328 332 public void setTimeStamp(Timestamp timeStamp) { 333 this.timeStamp = timeStamp; 334 } 335 336 public String getDateStr() { 337 return dateStr; 338 } 339 340 public void setDateStr(String dateStr) { 341 this.dateStr = dateStr; 342 } 343 344 347 public DoubleObject getDoubleObject() { 348 return doubleObject; 349 } 350 351 355 public void setDoubleObject(DoubleObject doubleObject) { 356 this.doubleObject = doubleObject; 357 } 358 359 public Van getVan() { 360 return van; 361 } 362 363 public void setVan(Van van) { 364 this.van = van; 365 } 366 367 public String getExcludeMe() { 368 return excludeMe; 369 } 370 371 public void setExcludeMe(String excludeMe) { 372 this.excludeMe = excludeMe; 373 } 374 375 public MetalThingyIF getCarMetalThingy() { 376 return carMetalThingy; 377 } 378 379 public void setCarMetalThingy(MetalThingyIF car) { 380 this.carMetalThingy = car; 381 } 382 383 public String getBlankDate() { 384 return blankDate; 385 } 386 387 public void setBlankDate(String blankDate) { 388 this.blankDate = blankDate; 389 } 390 391 public String getBlankStringToLong() { 392 return blankStringToLong; 393 } 394 395 public void setBlankStringToLong(String blankStringToLong) { 396 this.blankStringToLong = blankStringToLong; 397 } 398 399 public String getCreatedByFactoryName() { 400 return createdByFactoryName; 401 } 402 403 public void setCreatedByFactoryName(String createdByFactoryName) { 404 this.createdByFactoryName = createdByFactoryName; 405 } 406 407 public NoExtendBaseObject getCopyByReference() { 408 return copyByReference; 409 } 410 411 public void setCopyByReference(NoExtendBaseObject copyByReference) { 412 this.copyByReference = copyByReference; 413 } 414 415 public NoExtendBaseObject getCopyByReferenceDeep() { 416 return copyByReferenceDeep; 417 } 418 419 public void setCopyByReferenceDeep(NoExtendBaseObject copyByReferenceDeep) { 420 this.copyByReferenceDeep = copyByReferenceDeep; 421 } 422 423 public NoExtendBaseObjectGlobalCopyByReference getGlobalCopyByReference() { 424 return globalCopyByReference; 425 } 426 427 public void setGlobalCopyByReference(NoExtendBaseObjectGlobalCopyByReference globalCopyByReference) { 428 this.globalCopyByReference = globalCopyByReference; 429 } 430 431 public Set getSetToArray() { 432 return setToArray; 433 } 434 435 public void setSetToArray(Set setToArray) { 436 this.setToArray = setToArray; 437 } 438 439 public Set getSetToObjectArray() { 440 return setToObjectArray; 441 } 442 443 public void setSetToObjectArray(Set setToObjectArray) { 444 this.setToObjectArray = setToObjectArray; 445 } 446 447 public Set getSetToArrayWithValues() { 448 return setToArrayWithValues; 449 } 450 451 public void setSetToArrayWithValues(Set setToArrayWithValues) { 452 this.setToArrayWithValues = setToArrayWithValues; 453 } 454 455 public Set getSetToList() { 456 return setToList; 457 } 458 459 public void setSetToList(Set setToList) { 460 this.setToList = setToList; 461 } 462 463 public Set getSetToListWithValues() { 464 return setToListWithValues; 465 } 466 467 public void setSetToListWithValues(Set setToListWithValues) { 468 this.setToListWithValues = setToListWithValues; 469 } 470 471 public String getFieldAccessible() { 472 return fieldAccessible; 473 } 474 475 public void setFieldAccessible(String fieldAccessible) { 476 this.fieldAccessible = fieldAccessible; 477 } 478 479 public int getFieldAccessiblePrimInt() { 480 return fieldAccessiblePrimInt; 481 } 482 483 public void setFieldAccessiblePrimInt(int fieldAccessiblePrimInt) { 484 this.fieldAccessiblePrimInt = fieldAccessiblePrimInt; 485 } 486 487 public InsideTestObject getFieldAccessibleComplexType() { 488 return fieldAccessibleComplexType; 489 } 490 491 public void setFieldAccessibleComplexType(InsideTestObject fieldAccessibleComplexType) { 492 this.fieldAccessibleComplexType = fieldAccessibleComplexType; 493 } 494 495 public String [] getStringArrayWithNullValue() { 496 return stringArrayWithNullValue; 497 } 498 499 public void setStringArrayWithNullValue(String [] stringArrayWithNullValue) { 500 this.stringArrayWithNullValue = stringArrayWithNullValue; 501 } 502 503 public String [] getFieldAccessibleArrayToList() { 504 return fieldAccessibleArrayToList; 505 } 506 507 public void setFieldAccessibleArrayToList(String [] fieldAccessibleArrayToList) { 508 this.fieldAccessibleArrayToList = fieldAccessibleArrayToList; 509 } 510 511 public Date getOverloadGetField() { 512 return overloadGetField; 513 } 514 515 public void setOverloadGetField(Date overloadGetField) { 516 this.overloadGetField = overloadGetField; 517 } 518 519 public InsideTestObject getCreateMethodType() { 520 return createMethodType; 521 } 522 523 public void setCreateMethodType(InsideTestObject createMethodType) { 524 this.createMethodType = createMethodType; 525 } 526 527 public String getExcludeMeOneWay() { 528 return excludeMeOneWay; 529 } 530 531 public void setExcludeMeOneWay(String excludeMeOneWay) { 532 this.excludeMeOneWay = excludeMeOneWay; 533 } 534 535 public String getThrowAllowedExceptionOnMap() { 536 return throwAllowedExceptionOnMap; 537 } 538 539 public void setThrowAllowedExceptionOnMap(String throwAllowedExceptionOnMap) { 540 this.throwAllowedExceptionOnMap = throwAllowedExceptionOnMap; 541 } 542 543 public String getThrowNonAllowedExceptionOnMap() { 544 return throwNonAllowedExceptionOnMap; 545 } 546 547 public void setThrowNonAllowedExceptionOnMap(String throwNonAllowedExceptionOnMap) { 548 this.throwNonAllowedExceptionOnMap = throwNonAllowedExceptionOnMap; 549 } 550 551 } 552 | Popular Tags |