1 //$Id: SynonymousDictionary.java,v 1.1 2005/06/18 14:27:33 epbernard Exp $2 package org.hibernate.test.annotations.query;3 4 import javax.persistence.Inheritance;5 import javax.persistence.Entity;6 7 /**8 * @author Emmanuel Bernard9 */10 @Entity11 @Inheritance(discriminatorValue = "Syn")12 public class SynonymousDictionary extends Dictionary {13 }14