KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > annotations > inheritance > singletable > Rock


1 //$Id: Rock.java,v 1.1 2005/06/16 19:07:14 epbernard Exp $
2
package org.hibernate.test.annotations.inheritance.singletable;
3
4 import javax.persistence.Entity;
5 import javax.persistence.Inheritance;
6
7 /**
8  * @author Emmanuel Bernard
9  */

10 @Entity
11 @Inheritance(discriminatorValue = "2")
12 public class Rock extends Music {
13 }
14
Popular Tags