org.apache.torque.engine.database.model
Class Table

java.lang.Object
  extended by org.apache.torque.engine.database.model.Table
All Implemented Interfaces:
IDMethod

public class Table
extends java.lang.Object
implements IDMethod

Data about a table used in an application.

Version:
$Id: Table.java 473814 2006-11-11 22:30:30Z tv $
Author:
Leon Messerschmidt, Jason van Zyl, John McNally, Byron Foster,
Field Summary
 
Fields inherited from interface org.apache.torque.engine.database.model.IDMethod
ID_BROKER, NATIVE, NO_ID_METHOD
 
Constructor Summary
Table()
          Default Constructor
Table(java.lang.String name)
          Constructs a table object with a name
 
Method Summary
 Column addColumn(org.xml.sax.Attributes attrib)
          A utility function to create a new column from attrib and add it to this table.
 void addColumn(Column col)
          Adds a new column to the column list and set the parent table of the column to the current table
 ForeignKey addForeignKey(org.xml.sax.Attributes attrib)
          A utility function to create a new foreign key from attrib and add it to this table.
 void addForeignKey(ForeignKey fk)
          Adds a new FK to the FK list and set the parent table of the column to the current table
 IdMethodParameter addIdMethodParameter(org.xml.sax.Attributes attrib)
          A utility function to create a new id method parameter from attrib and add it to this table.
 void addIdMethodParameter(IdMethodParameter imp)
          Adds a new ID method parameter to the list and sets the parent table of the column associated with the supplied parameter to this table.
 Index addIndex(org.xml.sax.Attributes attrib)
          A utility function to create a new index from attrib and add it to this table.
 void addIndex(Index index)
          Adds a new index to the index list and set the parent table of the column to the current table
 void addOption(java.lang.String key, java.lang.String value)
          Add an XML Specified option key/value pair to this element's option set.
 void addReferrer(ForeignKey fk)
          Adds the foreign key from another table that refers to this table.
 Unique addUnique(org.xml.sax.Attributes attrib)
          A utility function to create a new Unique from attrib and add it to this table.
 void addUnique(Unique unique)
          Adds a new Unique to the Unique list and set the parent table of the column to the current table
 boolean containsColumn(Column col)
          Returns true if the table contains a specified column
 boolean containsColumn(java.lang.String name)
          Returns true if the table contains a specified column
 void doFinalInitialization()
          A hook for the SAX XML parser to call when this table has been fully loaded from the XML, and all nested elements have been processed.
 java.lang.String getAlias()
          JavaName of om object this entry references.
 java.lang.String getBaseClass()
          Gets the value of base class for classes produced from this table.
 java.lang.String getBasePeer()
          Get the value of basePeer.
 Column getChildrenColumn()
          Gets the column that subclasses of the class representing this table can be produced from.
 java.util.List getChildrenNames()
          Get the objects that can be created from this table.
 Column getColumn(java.lang.String name)
          Returns a specified column.
 Column getColumnByJavaName(java.lang.String javaName)
          Returns a specified column.
 java.util.List getColumns()
          Returns a List containing all the columns in the table
 boolean getContainsForeignPK()
          Determine if this table contains a foreign PK
 Database getDatabase()
          Get the parent of the table
 java.lang.String getDescription()
          Get the description for the Table
 ForeignKey getForeignKey(java.lang.String col)
          Return the first foreign key that includes col in it's list of local columns.
 java.util.List getForeignKeys()
          Returns a List containing all the FKs in the table
 java.util.List getForeignTableNames()
          A list of tables referenced by foreign keys in this table
 java.lang.String getIdMethod()
          Get the method for generating pk's
 java.util.List getIdMethodParameters()
          Returns a Collection of parameters relevant for the chosen id generation method.
 java.util.List getIndices()
          Returns a List containing all the indices in the table
 java.lang.String getInterface()
          Interface which objects for this table will implement
 java.lang.String getJavaName()
          Get name to use in Java sources
 java.lang.String getName()
          Get the name of the Table
 int getNumColumns()
          Utility method to get the number of columns in this table
 java.lang.String getOption(java.lang.String key)
          Get the value that was associated with this key in an XML option element.
 java.util.Map getOptions()
          Gets the full ordered hashtable array of items specified by XML option statements under this element.
 java.lang.String getPackage()
          Get the value of package.
 java.util.List getPrimaryKey()
          Returns the collection of Columns which make up the single primary key for this table.
 java.util.List getReferrers()
          Get list of references to this table.
 java.lang.String getSequenceName()
          A name to use for creating a sequence if one is not specified.
 java.util.List getUnices()
          Returns a List containing all the UKs in the table
 boolean hasPrimaryKey()
          Determine whether this table has a primary key.
 boolean isAbstract()
          When a table is abstract, it marks the business object class that is generated as being abstract.
 boolean isAlias()
          Is this table specified in the schema or is there just a foreign key reference to it.
 boolean isForReferenceOnly()
          Flag to determine if code/sql gets created for this table.
 boolean isSkipSql()
          Skip generating sql for this table (in the event it should not be created from scratch).
 void loadFromXML(org.xml.sax.Attributes attrib, java.lang.String defaultIdMethod)
          Load the table object from an xml tag.
 java.lang.String printPrimaryKey()
          Returns all parts of the primary key, separated by commas.
 boolean requiresTransactionInPostgres()
          Return true if the column requires a transaction in Postgres
 void setAbstract(boolean v)
          When a table is abstract, it marks the business object class that is generated as being abstract.
 void setAlias(java.lang.String v)
          Set whether this table specified in the schema or is there just a foreign key reference to it.
 void setBaseClass(java.lang.String v)
          Set the value of baseClass.
 void setBasePeer(java.lang.String v)
          Set the value of basePeer.
 void setContainsForeignPK(boolean b)
          Set whether this table contains a foreign PK
 void setCorrectGetters(java.lang.Boolean value)
          Force all columns to set the correctGetters property.
 void setDatabase(Database parent)
          Set the parent of the table
 void setDescription(java.lang.String newDescription)
          Set the description for the Table
 void setForReferenceOnly(boolean v)
          Flag to determine if code/sql gets created for this table.
 void setIdMethod(java.lang.String idMethod)
          Set the method for generating pk's
 void setInterface(java.lang.String v)
          Interface which objects for this table will implement
 void setJavaName(java.lang.String javaName)
          Set name to use in Java sources
 void setName(java.lang.String newName)
          Set the name of the Table
 void setPackage(java.lang.String v)
          Set the value of package.
 void setSkipSql(boolean v)
          Set whether this table should have its creation sql generated.
 java.lang.String toString()
          Returns a XML representation of this table.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Table

public Table()
Default Constructor


Table

public Table(java.lang.String name)
Constructs a table object with a name

Parameters:
name - table name
Method Detail

loadFromXML

public void loadFromXML(org.xml.sax.Attributes attrib,
                        java.lang.String defaultIdMethod)
Load the table object from an xml tag.

Parameters:
attrib - xml attributes
defaultIdMethod - defined at db level

doFinalInitialization

public void doFinalInitialization()

A hook for the SAX XML parser to call when this table has been fully loaded from the XML, and all nested elements have been processed.

Performs heavy indexing and naming of elements which weren't provided with a name.


getBaseClass

public java.lang.String getBaseClass()
Gets the value of base class for classes produced from this table.

Returns:
The base class for classes produced from this table.

setBaseClass

public void setBaseClass(java.lang.String v)
Set the value of baseClass.

Parameters:
v - Value to assign to baseClass.

getBasePeer

public java.lang.String getBasePeer()
Get the value of basePeer.

Returns:
value of basePeer.

setBasePeer

public void setBasePeer(java.lang.String v)
Set the value of basePeer.

Parameters:
v - Value to assign to basePeer.

addColumn

public Column addColumn(org.xml.sax.Attributes attrib)
A utility function to create a new column from attrib and add it to this table.

Parameters:
attrib - xml attributes for the column to add
Returns:
the added column

addColumn

public void addColumn(Column col)
Adds a new column to the column list and set the parent table of the column to the current table

Parameters:
col - the column to add

addForeignKey

public ForeignKey addForeignKey(org.xml.sax.Attributes attrib)
A utility function to create a new foreign key from attrib and add it to this table.

Parameters:
attrib - the xml attributes
Returns:
the created ForeignKey

getChildrenColumn

public Column getChildrenColumn()
Gets the column that subclasses of the class representing this table can be produced from.


getChildrenNames

public java.util.List getChildrenNames()
Get the objects that can be created from this table.


addReferrer

public void addReferrer(ForeignKey fk)
Adds the foreign key from another table that refers to this table.

Parameters:
fk - A foreign key refering to this table

getReferrers

public java.util.List getReferrers()
Get list of references to this table.

Returns:
A list of references to this table

setContainsForeignPK

public void setContainsForeignPK(boolean b)
Set whether this table contains a foreign PK

Parameters:
b -

getContainsForeignPK

public boolean getContainsForeignPK()
Determine if this table contains a foreign PK


getForeignTableNames

public java.util.List getForeignTableNames()
A list of tables referenced by foreign keys in this table

Returns:
A list of tables

addForeignKey

public void addForeignKey(ForeignKey fk)
Adds a new FK to the FK list and set the parent table of the column to the current table

Parameters:
fk - A foreign key

requiresTransactionInPostgres

public boolean requiresTransactionInPostgres()
Return true if the column requires a transaction in Postgres


addIdMethodParameter

public IdMethodParameter addIdMethodParameter(org.xml.sax.Attributes attrib)
A utility function to create a new id method parameter from attrib and add it to this table.


addIdMethodParameter

public void addIdMethodParameter(IdMethodParameter imp)
Adds a new ID method parameter to the list and sets the parent table of the column associated with the supplied parameter to this table.

Parameters:
imp - The column to add as an ID method parameter.

addIndex

public void addIndex(Index index)
Adds a new index to the index list and set the parent table of the column to the current table


addIndex

public Index addIndex(org.xml.sax.Attributes attrib)
A utility function to create a new index from attrib and add it to this table.


addUnique

public void addUnique(Unique unique)
Adds a new Unique to the Unique list and set the parent table of the column to the current table


addUnique

public Unique addUnique(org.xml.sax.Attributes attrib)
A utility function to create a new Unique from attrib and add it to this table.

Parameters:
attrib - the xml attributes

getName

public java.lang.String getName()
Get the name of the Table


setName

public void setName(java.lang.String newName)
Set the name of the Table


getDescription

public java.lang.String getDescription()
Get the description for the Table


setDescription

public void setDescription(java.lang.String newDescription)
Set the description for the Table

Parameters:
newDescription - description for the Table

getJavaName

public java.lang.String getJavaName()
Get name to use in Java sources


setJavaName

public void setJavaName(java.lang.String javaName)
Set name to use in Java sources


getIdMethod

public java.lang.String getIdMethod()
Get the method for generating pk's


setIdMethod

public void setIdMethod(java.lang.String idMethod)
Set the method for generating pk's


isSkipSql

public boolean isSkipSql()
Skip generating sql for this table (in the event it should not be created from scratch).

Returns:
value of skipSql.

setSkipSql

public void setSkipSql(boolean v)
Set whether this table should have its creation sql generated.

Parameters:
v - Value to assign to skipSql.

getAlias

public java.lang.String getAlias()
JavaName of om object this entry references.

Returns:
value of external.

isAlias

public boolean isAlias()
Is this table specified in the schema or is there just a foreign key reference to it.

Returns:
value of external.

setAlias

public void setAlias(java.lang.String v)
Set whether this table specified in the schema or is there just a foreign key reference to it.

Parameters:
v - Value to assign to alias.

getInterface

public java.lang.String getInterface()
Interface which objects for this table will implement

Returns:
value of interface.

setInterface

public void setInterface(java.lang.String v)
Interface which objects for this table will implement

Parameters:
v - Value to assign to interface.

isAbstract

public boolean isAbstract()
When a table is abstract, it marks the business object class that is generated as being abstract. If you have a table called "FOO", then the Foo BO will be public abstract class Foo This helps support class hierarchies

Returns:
value of abstractValue.

setAbstract

public void setAbstract(boolean v)
When a table is abstract, it marks the business object class that is generated as being abstract. If you have a table called "FOO", then the Foo BO will be public abstract class Foo This helps support class hierarchies

Parameters:
v - Value to assign to abstractValue.

getPackage

public java.lang.String getPackage()
Get the value of package.

Returns:
value of package.

setPackage

public void setPackage(java.lang.String v)
Set the value of package.

Parameters:
v - Value to assign to package.

getColumns

public java.util.List getColumns()
Returns a List containing all the columns in the table

Returns:
a List containing all the columns

getNumColumns

public int getNumColumns()
Utility method to get the number of columns in this table


getForeignKeys

public java.util.List getForeignKeys()
Returns a List containing all the FKs in the table

Returns:
a List containing all the FKs

getIdMethodParameters

public java.util.List getIdMethodParameters()
Returns a Collection of parameters relevant for the chosen id generation method.


getSequenceName

public java.lang.String getSequenceName()
A name to use for creating a sequence if one is not specified.

Returns:
name of the sequence

getIndices

public java.util.List getIndices()
Returns a List containing all the indices in the table

Returns:
A List containing all the indices

getUnices

public java.util.List getUnices()
Returns a List containing all the UKs in the table

Returns:
A List containing all the UKs

getColumn

public Column getColumn(java.lang.String name)
Returns a specified column.

Parameters:
name - name of the column
Returns:
Return a Column object or null if it does not exist.

getColumnByJavaName

public Column getColumnByJavaName(java.lang.String javaName)
Returns a specified column.

Parameters:
javaName - java name of the column
Returns:
Return a Column object or null if it does not exist.

getForeignKey

public ForeignKey getForeignKey(java.lang.String col)
Return the first foreign key that includes col in it's list of local columns. Eg. Foreign key (a,b,c) refrences tbl(x,y,z) will be returned of col is either a,b or c.

Parameters:
col - column name included in the key
Returns:
Return a Column object or null if it does not exist.

containsColumn

public boolean containsColumn(Column col)
Returns true if the table contains a specified column

Parameters:
col - the column
Returns:
true if the table contains the column

containsColumn

public boolean containsColumn(java.lang.String name)
Returns true if the table contains a specified column

Parameters:
name - name of the column
Returns:
true if the table contains the column

setDatabase

public void setDatabase(Database parent)
Set the parent of the table

Parameters:
parent - the parant database

getDatabase

public Database getDatabase()
Get the parent of the table

Returns:
the parant database

isForReferenceOnly

public boolean isForReferenceOnly()
Flag to determine if code/sql gets created for this table. Table will be skipped, if return true.

Returns:
value of forReferenceOnly.

setForReferenceOnly

public void setForReferenceOnly(boolean v)
Flag to determine if code/sql gets created for this table. Table will be skipped, if set to true.

Parameters:
v - Value to assign to forReferenceOnly.

toString

public java.lang.String toString()
Returns a XML representation of this table.

Overrides:
toString in class java.lang.Object
Returns:
XML representation of this table

getPrimaryKey

public java.util.List getPrimaryKey()
Returns the collection of Columns which make up the single primary key for this table.

Returns:
A list of the primary key parts.

hasPrimaryKey

public boolean hasPrimaryKey()
Determine whether this table has a primary key.

Returns:
Whether this table has any primary key parts.

printPrimaryKey

public java.lang.String printPrimaryKey()
Returns all parts of the primary key, separated by commas.

Returns:
A CSV list of primary key parts.

setCorrectGetters

public void setCorrectGetters(java.lang.Boolean value)
Force all columns to set the correctGetters property.

Parameters:
value - The new value of the correctGetters property.
Since:
3.2

addOption

public void addOption(java.lang.String key,
                      java.lang.String value)
Add an XML Specified option key/value pair to this element's option set.

Parameters:
key - the key of the option.
value - the value of the option.

getOption

public java.lang.String getOption(java.lang.String key)
Get the value that was associated with this key in an XML option element.

Parameters:
key - the key of the option.
Returns:
The value for the key or a null.

getOptions

public java.util.Map getOptions()
Gets the full ordered hashtable array of items specified by XML option statements under this element.

Note, this is not thread save but since it's only used for generation which is single threaded, there should be minimum danger using this in Velocity.

Returns:
An Map of all options. Will not be null but may be empty.


Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.