KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > subclasspropertyref > Customer


1 //$Id: Customer.java,v 1.1 2005/03/06 16:34:02 oneovthafew Exp $
2
package org.hibernate.test.subclasspropertyref;
3
4 /**
5  * @author Gavin King
6  */

7 public class Customer extends Person {
8     private String JavaDoc customerId;
9
10     public String JavaDoc getCustomerId() {
11         return customerId;
12     }
13     
14     public void setCustomerId(String JavaDoc customerId) {
15         this.customerId = customerId;
16     }
17     
18 }
19
Popular Tags