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.EAExtendedTableBase;
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>EAExtendedTable</code> object.
14   * <p>
15   * Description: 
16   *   Every datatype inheritted from an abstract table and normally defined. 
17   * </p>
18   *
19   * 
20   * <table> 
21   * <caption>
22   * Field summary for SQL table <code>EAExtended</code>
23   * </caption>
24   * <tr><th>Name</th><th>Type</th><th>Description</th></tr>
25   * <tr><td> id </td><td> Integer </td><td> &nbsp; </td></tr> 
26   * <tr><td> binaryfield2 </td><td> byte[] </td><td> Second Binary Field 
27   * </td></tr> 
28   * <tr><td> stringfield2 </td><td> String </td><td> Second String Field 
29   * </td></tr> 
30   * <tr><td> passwordfield2 </td><td> String </td><td> Second Password Field 
31   * </td></tr> 
32   * <tr><td> booleanfield2 </td><td> Boolean </td><td> Second Boolean Field 
33   * </td></tr> 
34   * <tr><td> datefield2 </td><td> Date </td><td> Second Date Field </td></tr> 
35   * <tr><td> doublefield2 </td><td> Double </td><td> Second Double Field 
36   * </td></tr> 
37   * <tr><td> integerfield2 </td><td> Integer </td><td> Second Integer Field 
38   * </td></tr> 
39   * <tr><td> longfield2 </td><td> Long </td><td> Second Long Field </td></tr> 
40   * <tr><td> bigdecimalfield2 </td><td> BigDecimal </td><td> Second BigDecimal 
41   * Field </td></tr> 
42   * <tr><td> timestampfield2 </td><td> Timestamp </td><td> Second Timestamp 
43   * Field </td></tr> 
44   * </table> 
45   * 
46   * See org.melati.poem.prepro.TableDef#generateTableJava 
47   */
48  public class EAExtendedTable<T extends EAExtended> extends EAExtendedTableBase<EAExtended> {
49  
50   /**
51    * Constructor.
52    * 
53    * See org.melati.poem.prepro.TableDef#generateTableJava 
54    * @param database          the POEM database we are using
55    * @param name              the name of this <code>Table</code>
56    * @param definitionSource  which definition is being used
57    * @throws PoemException    if anything goes wrong
58    */
59    public EAExtendedTable(
60        Database database, String name,
61        DefinitionSource definitionSource) throws PoemException {
62      super(database, name, definitionSource);
63    }
64  
65    // programmer's domain-specific code here
66  }
67