| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| JammyjoesTable |
|
| 1.0;1 |
| 1 | package org.paneris.jammyjoes.model; | |
| 2 | ||
| 3 | import org.melati.poem.JdbcTable; | |
| 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 modifyable inheritance hook. | |
| 10 | */ | |
| 11 | public class JammyjoesTable extends JdbcTable { | |
| 12 | ||
| 13 | /** | |
| 14 | * Constructor. | |
| 15 | * | |
| 16 | * @generator org.melati.poem.prepro.DSD#generateProjectTableJava | |
| 17 | * @param database the POEM database we are using | |
| 18 | * @param name the name of this <code>Table</code> | |
| 19 | * @param definitionSource which definition is being used | |
| 20 | * @throws PoemException if anything goes wrong | |
| 21 | */ | |
| 22 | ||
| 23 | public JammyjoesTable( | |
| 24 | Database database, String name, | |
| 25 | DefinitionSource definitionSource) throws PoemException { | |
| 26 | 0 | super(database, name, definitionSource); |
| 27 | 0 | } |
| 28 | ||
| 29 | // programmer's domain-specific code here | |
| 30 | } | |
| 31 | ||
| 32 |