View Javadoc

1   // Delete this line to prevent overwriting of this file
2   
3   package org.paneris.bibliomania;
4   
5   
6   import org.paneris.bibliomania.generated.CountryBase;
7   
8   /**
9    * Melati POEM generated, programmer modifiable stub 
10   * for a <code>Persistent</code> <code>Country</code> object.
11   * 
12   * <p> 
13   * Description: 
14   *   A country where a user can live. 
15   * </p>
16   * 
17   * <table> 
18   * <tr><th colspan='3'>
19   * Field summary for SQL table <code>Country</code>
20   * </th></tr>
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> displayname </td><td> String </td><td> The country's name 
24   * </td></tr> 
25   * <tr><td> deliverycharge </td><td> DeliveryChargeBand </td><td> &nbsp; 
26   * </td></tr> 
27   * </table> 
28   * 
29   * see org.melati.poem.prepro.TableDef#generatePersistentJava 
30   */
31  public class Country extends CountryBase {
32  
33   /**
34    * Constructor 
35    * for a <code>Persistent</code> <code>Country</code> object.
36    * <p>
37    * Description: 
38    *   A country where a user can live. 
39    * </p>
40    * 
41    * see org.melati.poem.prepro.TableDef#generatePersistentJava 
42    */
43    public Country() { 
44      super();
45  }
46  
47    // programmer's domain-specific code here
48  }
49