1 //$Id: TableOwner.java,v 1.1 2004/10/06 23:24:14 epbernard Exp $ 2 package org.hibernate.mapping; 3 4 /** 5 * Interface allowing to differenciate SubClasses 6 * from Classes, JoinedSubClasses and UnionSubClasses 7 * The first one has not its own table while the others have 8 * 9 * @author Emmanuel Bernard 10 */ 11 public interface TableOwner { 12 void setTable(Table table); 13 } 14