KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > comppropertyref > Person


1 //$Id: Person.java,v 1.1 2005/07/21 01:22:38 oneovthafew Exp $
2
package org.hibernate.test.comppropertyref;
3
4 public class Person {
5     private Long JavaDoc id;
6     private Identity identity;
7     
8     public Long JavaDoc getId() {
9         return id;
10     }
11     public void setId(Long JavaDoc id) {
12         this.id = id;
13     }
14     public Identity getIdentity() {
15         return identity;
16     }
17     public void setIdentity(Identity identity) {
18         this.identity = identity;
19     }
20 }
21
Popular Tags