View Javadoc

1   package org.paneris.melati.site.model;
2   
3   import org.paneris.melati.site.model.generated.SettingTableBase;
4   import org.melati.poem.DefinitionSource;
5   import org.melati.poem.Database;
6   import org.melati.poem.PoemException;
7   
8   /**
9    * Melati POEM generated, programmer modifiable stub 
10   * for a <code>SettingTable</code> object.
11   *
12   * 
13   * <table> 
14   * <tr><th colspan='3'>
15   * Field summary for SQL table <code>Setting</code>
16   * </th></tr>
17   * <tr><th>Name</th><th>Type</th><th>Description</th></tr>
18   * </table> 
19   * 
20   * @see  org.melati.poem.prepro.TableDef#generateTableJava 
21   */
22  public class SettingTable extends SettingTableBase {
23  
24   /**
25    * Constructor.
26    * 
27    * @see org.melati.poem.prepro.TableDef#generateTableJava 
28    * @param database          the POEM database we are using
29    * @param name              the name of this <code>Table</code>
30    * @param definitionSource  which definition is being used
31    * @throws PoemException    if anything goes wrong
32    */
33    public SettingTable(
34        Database database, String name,
35        DefinitionSource definitionSource) throws PoemException {
36      super(database, name, definitionSource);
37    }
38  
39    // programmer's domain-specific code here
40  }
41