KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > hql > HeresAnotherCrazyIdFieldName


1 // $Id: HeresAnotherCrazyIdFieldName.java,v 1.1 2005/07/14 14:58:28 steveebersole Exp $
2
package org.hibernate.test.hql;
3
4 /**
5  * Implementation of HeresAnotherCrazyIdFieldName.
6  *
7  * @author Steve Ebersole
8  */

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