1 package test.hibernate; 2 3 import java.util.Set ; 4 5 16 public class Animal extends Persistent { 17 18 private Set prey; 19 private char sex; 20 21 24 public Animal() { 25 super(); 26 } 27 28 39 public Set getPrey() { 40 return prey; 41 } 42 43 47 public void setPrey(Set prey) { 48 this.prey = prey; 49 } 50 51 57 public char getSex() { 58 return sex; 59 } 60 61 65 public void setSex(char sex) { 66 this.sex = sex; 67 } 68 69 } 70 | Popular Tags |