com.im.commons.db 5.9.2

com.im.commons.db.ddl.tablesets
Class JChemPropertyTableSetInfo

java.lang.Object
  extended by com.im.commons.db.ddl.tablesets.TableSetInfo
      extended by com.im.commons.db.ddl.tablesets.JChemPropertyTableSetInfo
All Implemented Interfaces:
AbstractInfo, Serializable

public class JChemPropertyTableSetInfo
extends TableSetInfo

TableSetInfo for a JChem property table.

See Also:
Serialized Form

Field Summary
static String TABLE_TYPE
           
 
Fields inherited from class com.im.commons.db.ddl.tablesets.TableSetInfo
tableInfos
 
Constructor Summary
protected JChemPropertyTableSetInfo()
           
 
Method Summary
 JChemPropertyTableSetInfo clone()
           
 SQLJoin[] getJoins()
          The joins for each of the tables used by this set of tables.
 String getType()
          A string that identifies the table type.
 
Methods inherited from class com.im.commons.db.ddl.tablesets.TableSetInfo
addToModel, getTableInfos, getTableNames, removeFromModel, schemaPlusTable, updateLazyTableInfos, updateTableInfos, updateTableInfosRemoveProxies
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TABLE_TYPE

public static final String TABLE_TYPE
See Also:
Constant Field Values
Constructor Detail

JChemPropertyTableSetInfo

protected JChemPropertyTableSetInfo()
Method Detail

getType

public String getType()
Description copied from class: TableSetInfo
A string that identifies the table type. The value will be one of the TABLE_TYPE_* constants

Specified by:
getType in class TableSetInfo
Returns:
The table type

getJoins

public SQLJoin[] getJoins()
Description copied from class: TableSetInfo
The joins for each of the tables used by this set of tables. The joins information must be supplied in the same order as the tables in TableSetInfo.getTableNames() e.g. the second element in the list of joins corresponds to the join between the master table and the second element in the getTableNames() list. Join information allows data (e.g. a field) to be present in a separate table and provides the information necessary to retreive that information By definition the join for the first element must be a SQLJoin with has a zero length path (e.g. new SQLJoin(new SQLJoin.Path[0]) ), but joins for the other tables can optionally be defined. A join will be defined where the row(s) in the secondary table can be related to those in the master table by means of a join. Not all tables will have such a join, and in these cases the list should contain null for that element in the list.

Specified by:
getJoins in class TableSetInfo
Returns:
SQLJoin array

clone

public JChemPropertyTableSetInfo clone()
Specified by:
clone in class TableSetInfo

com.im.commons.db 5.9.2