1 package org.hibernate.test.legacy; 3 4 import java.util.List ; 5 import java.util.Set ; 6 7 8 public class Lower extends Top { 9 private int intprop; 10 private String foo; 11 private Set set; 12 private List bag; 13 private Top another; 14 private Lower yetanother; 15 private Po mypo; 16 20 public int getIntprop() { 21 return intprop; 22 } 23 24 28 public void setIntprop(int intprop) { 29 this.intprop = intprop; 30 } 31 32 36 public String getFoo() { 37 return foo; 38 } 39 40 44 public void setFoo(String foo) { 45 this.foo = foo; 46 } 47 48 52 public Set getSet() { 53 return set; 54 } 55 56 60 public void setSet(Set set) { 61 this.set = set; 62 } 63 64 68 public Top getAnother() { 69 return another; 70 } 71 72 76 public Lower getYetanother() { 77 return yetanother; 78 } 79 80 84 public void setAnother(Top another) { 85 this.another = another; 86 } 87 88 92 public void setYetanother(Lower yetanother) { 93 this.yetanother = yetanother; 94 } 95 96 100 public List getBag() { 101 return bag; 102 } 103 104 108 public void setBag(List bag) { 109 this.bag = bag; 110 } 111 112 116 public Po getMypo() { 117 return mypo; 118 } 119 120 124 public void setMypo(Po mypo) { 125 this.mypo = mypo; 126 } 127 128 } 129 130 131 132 133 134 135 | Popular Tags |