View Javadoc
1   package org.melati.poem;
2   
3   public interface PersistentReferencePoemType {
4   
5     /**
6      * @return Table this type references
7      */
8     public abstract Table<?> targetTable();
9   
10  }