View Javadoc
1   // Delete this line to prevent overwriting of this file
2   
3   package org.melati.poem.test;
4   
5   
6   import org.melati.poem.test.generated.EmptyAbstractTableTableBase;
7   import org.melati.poem.DefinitionSource;
8   import org.melati.poem.Database;
9   import org.melati.poem.PoemException;
10  
11  /**
12   * Melati POEM generated, programmer modifiable stub 
13   * for a <code>EmptyAbstractTableTable</code> object.
14   * <p>
15   * Description: 
16   *   Empty abstract table to create a stub. 
17   * </p>
18   *
19   * 
20   * <table> 
21   * <caption>
22   * Field summary for SQL table <code>EmptyAbstractTable</code>
23   * </caption>
24   * <tr><th>Name</th><th>Type</th><th>Description</th></tr>
25   * </table> 
26   * 
27   * See org.melati.poem.prepro.TableDef#generateTableJava 
28   */
29  public class EmptyAbstractTableTable<T extends EmptyAbstractTable> extends EmptyAbstractTableTableBase<EmptyAbstractTable> {
30  
31   /**
32    * Constructor.
33    * 
34    * See org.melati.poem.prepro.TableDef#generateTableJava 
35    * @param database          the POEM database we are using
36    * @param name              the name of this <code>Table</code>
37    * @param definitionSource  which definition is being used
38    * @throws PoemException    if anything goes wrong
39    */
40    public EmptyAbstractTableTable(
41        Database database, String name,
42        DefinitionSource definitionSource) throws PoemException {
43      super(database, name, definitionSource);
44    }
45  
46    // programmer's domain-specific code here
47  }
48