KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > annotations > duplicatedgenerator > Flight


1 //$Id: Flight.java,v 1.1 2005/05/12 13:33:27 epbernard Exp $
2
package org.hibernate.test.annotations.duplicatedgenerator;
3
4 import javax.persistence.AccessType;
5 import javax.persistence.Entity;
6 import javax.persistence.Id;
7 import javax.persistence.Table;
8
9 /**
10  * Here to test duplicate import
11  *
12  * @author Emmanuel Bernard
13  */

14 @Entity(access = AccessType.FIELD)
15 @Table(name="tbl_flight")
16 public class Flight {
17     @Id
18     public String JavaDoc id;
19 }
20
Popular Tags