1 package org.hibernate.test.legacy; 3 4 import java.io.Serializable ; 5 import java.util.Set ; 6 7 public class Fee implements Serializable { 8 public Fee fee; 9 public Fee anotherFee; 10 public String fi; 11 public String key; 12 public Set fees; 13 private Qux qux; 14 private FooComponent compon; 15 private int count; 16 17 public Fee() { 18 } 19 20 public Fee getFee() { 21 return fee; 22 } 23 24 public void setFee(Fee fee) { 25 this.fee = fee; 26 } 27 28 public String getFi() { 29 return fi; 30 } 31 32 public void setFi(String fi) { 33 this.fi = fi; 34 } 35 36 public String getKey() { 37 return key; 38 } 39 40 public void setKey(String key) { 41 this.key = key; 42 } 43 44 public Set getFees() { 45 return fees; 46 } 47 48 public void setFees(Set fees) { 49 this.fees = fees; 50 } 51 52 public Fee getAnotherFee() { 53 return anotherFee; 54 } 55 56 public void setAnotherFee(Fee anotherFee) { 57 this.anotherFee = anotherFee; 58 } 59 60 public Qux getQux() { 61 return qux; 62 } 63 64 public void setQux(Qux qux) { 65 this.qux = qux; 66 } 67 68 public FooComponent getCompon() { 69 return compon; 70 } 71 72 public void setCompon(FooComponent compon) { 73 this.compon = compon; 74 } 75 76 80 public int getCount() { 81 return count; 82 } 83 84 88 public void setCount(int count) { 89 this.count = count; 90 } 91 92 } 93 94 95 96 97 98 99 | Popular Tags |