1 package net.sf.dozer.util.mapping.vo.set; 2 3 import java.util.Date ; 4 5 import net.sf.dozer.util.mapping.vo.BaseTestObject; 6 7 public class SomeOtherVO extends BaseTestObject { 8 private Integer otherField1; 9 private SomeVO otherField2; 10 private String otherField3; 11 private Date otherField4; 12 13 public Integer getOtherField1() { 14 return otherField1; 15 } 16 public void setOtherField1(Integer otherField1) { 17 this.otherField1 = otherField1; 18 } 19 public SomeVO getOtherField2() { 20 return otherField2; 21 } 22 public void setOtherField2(SomeVO otherField2) { 23 this.otherField2 = otherField2; 24 } 25 public String getOtherField3() { 26 return otherField3; 27 } 28 public void setOtherField3(String otherField3) { 29 this.otherField3 = otherField3; 30 } 31 public Date getOtherField4() { 32 return otherField4; 33 } 34 public void setOtherField4(Date otherField4) { 35 this.otherField4 = otherField4; 36 } 37 38 } 39 | Popular Tags |