KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > annotations > inheritance > Apple


1 //$Id: Apple.java,v 1.1 2005/05/12 13:33:33 epbernard Exp $
2
package org.hibernate.test.annotations.inheritance;
3
4 import javax.persistence.Entity;
5
6 /**
7  * @author Emmanuel Bernard
8  */

9 @Entity
10 public class Apple extends Fruit {
11 }
12
Popular Tags