KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > subselect > Being


1 //$Id: Being.java,v 1.2 2005/06/19 02:01:05 oneovthafew Exp $
2
package org.hibernate.test.subselect;
3
4 /**
5  * @author Gavin King
6  */

7 public class Being {
8     private long id;
9     private String JavaDoc identity;
10     private String JavaDoc location;
11     private String JavaDoc species;
12     
13     public void setLocation(String JavaDoc location) {
14         this.location = location;
15     }
16     public String JavaDoc getLocation() {
17         return location;
18     }
19     public void setSpecies(String JavaDoc species) {
20         this.species = species;
21     }
22     public String JavaDoc getSpecies() {
23         return species;
24     }
25     public void setIdentity(String JavaDoc identity) {
26         this.identity = identity;
27     }
28     public String JavaDoc getIdentity() {
29         return identity;
30     }
31 }
32
Popular Tags