View Javadoc
1   // Delete this line to prevent overwriting of this file
2   
3   package org.melati.example.contacts;
4   
5   
6   import org.melati.example.contacts.generated.ContactCategoryBase;
7   
8   /**
9    * Melati POEM generated, programmer modifiable stub 
10   * for a <code>Persistent</code> <code>ContactCategory</code> object.
11   * 
12   * <p> 
13   * Description: 
14   *   Contacts Categories. 
15   * </p>
16   * 
17   * <table> 
18   * <caption>
19   * Field summary for SQL table <code>ContactCategory</code>
20   * </caption>
21   * <tr><th>Name</th><th>Type</th><th>Description</th></tr>
22   * <tr><td> id </td><td> Integer </td><td> &nbsp; </td></tr> 
23   * <tr><td> category </td><td> Category </td><td> Category </td></tr> 
24   * <tr><td> contact </td><td> Contact </td><td> Contact </td></tr> 
25   * </table> 
26   * 
27   * See org.melati.poem.prepro.TableDef#generatePersistentJava 
28   */
29  public class ContactCategory extends ContactCategoryBase {
30  
31   /**
32    * Constructor 
33    * for a <code>Persistent</code> <code>ContactCategory</code> object.
34    * <p>
35    * Description: 
36    *   Contacts Categories. 
37    * </p>
38    * 
39    * See org.melati.poem.prepro.TableDef#generatePersistentJava 
40    */
41    public ContactCategory() { 
42      super();
43  }
44  
45    // programmer's domain-specific code here
46  }
47