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