1 package org.hibernate.test.hql; 3 4 9 public class HeresAnotherCrazyIdFieldName { 10 private Long heresAnotherCrazyIdFieldName; 11 private String name; 12 13 public HeresAnotherCrazyIdFieldName() { 14 } 15 16 public HeresAnotherCrazyIdFieldName(String name) { 17 this.name = name; 18 } 19 20 public Long getHeresAnotherCrazyIdFieldName() { 21 return heresAnotherCrazyIdFieldName; 22 } 23 24 public void setHeresAnotherCrazyIdFieldName(Long heresAnotherCrazyIdFieldName) { 25 this.heresAnotherCrazyIdFieldName = heresAnotherCrazyIdFieldName; 26 } 27 28 public String getName() { 29 return name; 30 } 31 32 public void setName(String name) { 33 this.name = name; 34 } 35 } 36 | Popular Tags |