1 package org.hibernate.test.legacy;2 3 public class Z {4 5 private long id;6 private W w;7 8 /**9 * 10 */11 public Z() {12 }13 14 15 /**16 * @return17 */18 public long getId() {19 return id;20 }21 22 /**23 * @return24 */25 public W getW() {26 return w;27 }28 29 /**30 * @param l31 */32 public void setId(long l) {33 id = l;34 }35 36 /**37 * @param w38 */39 public void setW(W w) {40 this.w = w;41 }42 43 }44