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 Bernard8 */9 @Entity10 public class Apple extends Fruit {11 }12