1 package org.hibernate.test.legacy; 2 3 4 public class Y { 5 6 private Long id; 7 private String x; 8 private X theX; 9 13 public Long getId() { 14 return id; 15 } 16 17 21 public String getX() { 22 return x; 23 } 24 25 29 public void setId(Long id) { 30 this.id = id; 31 } 32 33 37 public void setX(String x) { 38 this.x = x; 39 } 40 41 44 public X getTheX() { 45 return theX; 46 } 47 48 51 public void setTheX(X x) { 52 theX = x; 53 } 54 55 } 56 | Popular Tags |