1 // Delete this line to prevent overwriting of this file
2
3 package org.paneris.bibliomania;
4
5
6 import org.paneris.bibliomania.generated.ProductAssociationBase;
7
8 /**
9 * Melati POEM generated, programmer modifiable stub
10 * for a <code>Persistent</code> <code>ProductAssociation</code> object.
11 *
12 * <p>
13 * Description:
14 * Book and/or Author associated with a product.
15 * </p>
16 *
17 * <table>
18 * <tr><th colspan='3'>
19 * Field summary for SQL table <code>ProductAssociation</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> </td></tr>
23 * <tr><td> product </td><td> Product </td><td> The related shop item
24 * </td></tr>
25 * <tr><td> book </td><td> Book </td><td> The book this product is related to
26 * </td></tr>
27 * <tr><td> author </td><td> Author </td><td> The author this product is
28 * related to </td></tr>
29 * </table>
30 *
31 * see org.melati.poem.prepro.TableDef#generatePersistentJava
32 */
33 public class ProductAssociation extends ProductAssociationBase {
34
35 /**
36 * Constructor
37 * for a <code>Persistent</code> <code>ProductAssociation</code> object.
38 * <p>
39 * Description:
40 * Book and/or Author associated with a product.
41 * </p>
42 *
43 * see org.melati.poem.prepro.TableDef#generatePersistentJava
44 */
45 public ProductAssociation() {
46 super();
47 }
48
49 // programmer's domain-specific code here
50 }
51