KickJava   Java API By Example, From Geeks To Geeks.

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


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 SomeOtherVO extends BaseTestObject {
8   private Integer JavaDoc otherField1;
9   private SomeVO otherField2;
10   private String JavaDoc otherField3;
11   private Date JavaDoc otherField4;
12
13   public Integer JavaDoc getOtherField1() {
14     return otherField1;
15   }
16   public void setOtherField1(Integer JavaDoc 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 JavaDoc getOtherField3() {
26     return otherField3;
27   }
28   public void setOtherField3(String JavaDoc otherField3) {
29     this.otherField3 = otherField3;
30   }
31   public Date JavaDoc getOtherField4() {
32     return otherField4;
33   }
34   public void setOtherField4(Date JavaDoc otherField4) {
35     this.otherField4 = otherField4;
36   }
37   
38 }
39
Popular Tags