1 package org.hibernate.test.legacy; 3 4 import java.util.List ; 5 import java.util.Set ; 6 7 8 11 public class Po { 12 private long id; 13 private String value; 14 private Set set; 15 private List list; 16 private Top top; 17 private Lower lower; 18 22 public long getId() { 23 return id; 24 } 25 26 30 public String getValue() { 31 return value; 32 } 33 34 38 public void setId(long id) { 39 this.id = id; 40 } 41 42 46 public void setValue(String value) { 47 this.value = value; 48 } 49 50 54 public Set getSet() { 55 return set; 56 } 57 58 62 public void setSet(Set set) { 63 this.set = set; 64 } 65 66 70 public List getList() { 71 return list; 72 } 73 74 78 public void setList(List list) { 79 this.list = list; 80 } 81 82 public Lower getLower() { 83 return lower; 84 } 85 86 public Top getTop() { 87 return top; 88 } 89 90 public void setLower(Lower lower) { 91 this.lower = lower; 92 } 93 94 public void setTop(Top top) { 95 this.top = top; 96 } 97 98 } 99 100 101 102 103 104 105 | Popular Tags |