1 // Delete this line to prevent overwriting of this file
2
3 package org.paneris.bibliomania;
4
5
6 import org.paneris.bibliomania.generated.BoardTableBase;
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>BoardTable</code> object.
14 *
15 *
16 * <table>
17 * <tr><th colspan='3'>
18 * Field summary for SQL table <code>Board</code>
19 * </th></tr>
20 * <tr><th>Name</th><th>Type</th><th>Description</th></tr>
21 * </table>
22 *
23 * see org.melati.poem.prepro.TableDef#generateTableJava
24 */
25 public class BoardTable<T extends Board> extends BoardTableBase<Board> {
26
27 /**
28 * Constructor.
29 *
30 * see org.melati.poem.prepro.TableDef#generateTableJava
31 * @param database the POEM database we are using
32 * @param name the name of this <code>Table</code>
33 * @param definitionSource which definition is being used
34 * @throws PoemException if anything goes wrong
35 */
36 public BoardTable(
37 Database database, String name,
38 DefinitionSource definitionSource) throws PoemException {
39 super(database, name, definitionSource);
40 }
41
42 // programmer's domain-specific code here
43 }
44