KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > campware > cream > om > map > ServiceItemMapBuilder


1 package org.campware.cream.om.map;
2
3 import java.util.Date JavaDoc;
4 import java.math.BigDecimal JavaDoc;
5
6 import org.apache.torque.Torque;
7 import org.apache.torque.TorqueException;
8 import org.apache.torque.map.MapBuilder;
9 import org.apache.torque.map.DatabaseMap;
10 import org.apache.torque.map.TableMap;
11
12 /**
13   * This class was autogenerated by Torque on:
14   *
15   * [Wed May 04 09:10:56 CEST 2005]
16   *
17   */

18 public class ServiceItemMapBuilder implements MapBuilder
19 {
20     /**
21      * The name of this class
22      */

23     public static final String JavaDoc CLASS_NAME =
24         "org.campware.cream.om.map.ServiceItemMapBuilder";
25
26
27     /**
28      * The database map.
29      */

30     private DatabaseMap dbMap = null;
31
32     /**
33      * Tells us if this DatabaseMapBuilder is built so that we
34      * don't have to re-build it every time.
35      *
36      * @return true if this DatabaseMapBuilder is built
37      */

38     public boolean isBuilt()
39     {
40         return (dbMap != null);
41     }
42
43     /**
44      * Gets the databasemap this map builder built.
45      *
46      * @return the databasemap
47      */

48     public DatabaseMap getDatabaseMap()
49     {
50         return this.dbMap;
51     }
52
53     /**
54      * The doBuild() method builds the DatabaseMap
55      *
56      * @throws TorqueException
57      */

58     public void doBuild() throws TorqueException
59     {
60         dbMap = Torque.getDatabaseMap("cream");
61
62         dbMap.addTable("SERVICE_ITEM");
63         TableMap tMap = dbMap.getTable("SERVICE_ITEM");
64
65         tMap.setPrimaryKeyMethod(TableMap.NATIVE);
66
67         tMap.setPrimaryKeyMethodInfo("SERVICE_ITEM_SEQ");
68
69               tMap.addPrimaryKey("SERVICE_ITEM.SERVICE_ITEM_ID", new Integer JavaDoc(0));
70                     tMap.addForeignKey(
71                 "SERVICE_ITEM.SORDER_ID", new Integer JavaDoc(0) , "SORDER" ,
72                 "SORDER_ID");
73                     tMap.addForeignKey(
74                 "SERVICE_ITEM.CUSTOMER_ID", new Integer JavaDoc(0) , "CUSTOMER" ,
75                 "CUSTOMER_ID");
76                     tMap.addForeignKey(
77                 "SERVICE_ITEM.RECIPIENT_ID", new Integer JavaDoc(0) , "CUSTOMER" ,
78                 "CUSTOMER_ID");
79                     tMap.addForeignKey(
80                 "SERVICE_ITEM.PROJECT_ID", new Integer JavaDoc(0) , "PROJECT" ,
81                 "PROJECT_ID");
82                     tMap.addForeignKey(
83                 "SERVICE_ITEM.SERVICE_ID", new Integer JavaDoc(0) , "SERVICE" ,
84                 "SERVICE_ID");
85                     tMap.addForeignKey(
86                 "SERVICE_ITEM.PRODUCT_ID", new Integer JavaDoc(0) , "PRODUCT" ,
87                 "PRODUCT_ID");
88                     tMap.addColumn("SERVICE_ITEM.DESCRIPTION", "");
89                     tMap.addColumn("SERVICE_ITEM.QUANTITY", new Integer JavaDoc(0));
90           }
91 }
92
Popular Tags