1 package org.hibernate.test.legacy; 3 4 import java.util.Set ; 5 6 public class E { 7 private Long id; 8 private float amount; 9 private A reverse; 10 private Set as; 11 15 public float getAmount() { 16 return amount; 17 } 18 19 23 public Long getId() { 24 return id; 25 } 26 27 31 public void setAmount(float amount) { 32 this.amount = amount; 33 } 34 35 39 public void setId(Long id) { 40 this.id = id; 41 } 42 43 public A getReverse() { 44 return reverse; 45 } 46 47 public void setReverse(A a) { 48 reverse = a; 49 } 50 51 54 public Set getAs() { 55 return as; 56 } 57 58 61 public void setAs(Set as) { 62 this.as = as; 63 } 64 65 } 66 67 68 69 70 71 72 | Popular Tags |