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.BinaryFieldTableBase;
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>BinaryFieldTable</code> object.
14 * <p>
15 * Description:
16 * A table with only a binary field in it.
17 * </p>
18 *
19 *
20 * <table>
21 * <caption>
22 * Field summary for SQL table <code>BinaryField</code>
23 * </caption>
24 * <tr><th>Name</th><th>Type</th><th>Description</th></tr>
25 * <tr><td> id </td><td> Integer </td><td> </td></tr>
26 * <tr><td> binaryfield </td><td> byte[] </td><td> </td></tr>
27 * <tr><td> unlimited </td><td> byte[] </td><td> </td></tr>
28 * </table>
29 *
30 * See org.melati.poem.prepro.TableDef#generateTableJava
31 */
32 public class BinaryFieldTable<T extends BinaryField> extends BinaryFieldTableBase<BinaryField> {
33
34 /**
35 * Constructor.
36 *
37 * See org.melati.poem.prepro.TableDef#generateTableJava
38 * @param database the POEM database we are using
39 * @param name the name of this <code>Table</code>
40 * @param definitionSource which definition is being used
41 * @throws PoemException if anything goes wrong
42 */
43 public BinaryFieldTable(
44 Database database, String name,
45 DefinitionSource definitionSource) throws PoemException {
46 super(database, name, definitionSource);
47 }
48
49 // programmer's domain-specific code here
50 }
51