1 // Delete this line to prevent overwriting of this file 2 3 package org.melati.example.odmg; 4 5 6 import org.melati.example.odmg.generated.ChildBase; 7 8 /** 9 * Melati POEM generated, programmer modifiable stub 10 * for a <code>Persistent</code> <code>Child</code> object. 11 * 12 * 13 * <table> 14 * <caption> 15 * Field summary for SQL table <code>Child</code> 16 * </caption> 17 * <tr><th>Name</th><th>Type</th><th>Description</th></tr> 18 * <tr><td> id </td><td> Integer </td><td> </td></tr> 19 * <tr><td> name </td><td> String </td><td> </td></tr> 20 * <tr><td> parent </td><td> Parent </td><td> </td></tr> 21 * </table> 22 * 23 * See org.melati.poem.prepro.TableDef#generatePersistentJava 24 */ 25 public class Child extends ChildBase { 26 27 /** 28 * Constructor 29 * for a <code>Persistent</code> <code>Child</code> object. 30 * 31 * See org.melati.poem.prepro.TableDef#generatePersistentJava 32 */ 33 public Child() { 34 super(); 35 } 36 37 // programmer's domain-specific code here 38 } 39