1 package org.hibernate.test.legacy; 3 4 import java.util.Set ; 5 6 public class One { 7 Long key; 8 String value; 9 Set manies; 10 private int x; 11 12 public int getX() { 13 return x; 14 } 15 public void setX(int x) { 16 this.x = x; 17 } 18 19 public void setKey(Long key) { 20 this.key = key; 21 } 22 23 public Long getKey() { 24 return this.key; 25 } 26 27 public void setValue(String value) { 28 this.value = value; 29 } 30 31 public String getValue() { 32 return this.value; 33 } 34 35 public Set getManies() { 36 return manies; 37 } 38 39 public void setManies(Set manies) { 40 this.manies = manies; 41 } 42 43 } 44 45 46 47 48 49 50 | Popular Tags |