1 // Delete this line to prevent overwriting of this file
2
3 package org.paneris.bibliomania;
4
5
6 import org.melati.poem.JdbcTable;
7 import org.melati.poem.DefinitionSource;
8 import org.melati.poem.Database;
9 import org.melati.poem.Persistent;
10 import org.melati.poem.PoemException;
11
12 /**
13 * Melati POEM generated, programmer modifiable inheritance hook.
14 */
15 public class BibliomaniaTable<P extends Persistent> extends JdbcTable<P> {
16
17 /**
18 * Constructor.
19 *
20 * @see org.melati.poem.prepro.DSD#generateProjectTableJava
21 * @param database the POEM database we are using
22 * @param name the name of this <code>Table</code>
23 * @param definitionSource which definition is being used
24 * @throws PoemException if anything goes wrong
25 */
26
27 public BibliomaniaTable(
28 Database database, String name,
29 DefinitionSource definitionSource) throws PoemException {
30 super(database, name, definitionSource);
31 }
32
33 // programmer's domain-specific code here
34 // Don't forget to delete first line to prevent overwriting
35 }
36
37