KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > dozer > util > mapping > vo > set > SomeOtherDTO


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