SPT RWT Application API

Uses of Class
com.sptci.rwt.ForeignKeyMetaData

Packages that use ForeignKeyMetaData
com.sptci.rwt A database abstraction API for analysing and interacting with relational databases using JDBC. 
com.sptci.rwt.webui.model Contains custom classes to display details of the MetaData classes in the detail area. 
com.sptci.rwt.webui.tree Contains custom classes to represent the MetaData sub-classes in a Tree
 

Uses of ForeignKeyMetaData in com.sptci.rwt
 

Fields in com.sptci.rwt with type parameters of type ForeignKeyMetaData
private  Collection<ForeignKeyMetaData> TableMetaData.foreignKeys
          The collection of foreign key columns for this table.
 

Methods in com.sptci.rwt that return types with arguments of type ForeignKeyMetaData
 Collection<ForeignKeyMetaData> ForeignKeyAnalyser.analyse(MetaData... parameters)
          Returns a collection of ForeignKeyMetaData objects that contain all information pertaining to the foreign keys for the specified table.
 Collection<ForeignKeyMetaData> TableAnalyser.getExportedKeys(TableMetaData metaData)
          Retrieve the meta data about the foreign key references to this table.
 Collection<ForeignKeyMetaData> TableMetaData.getForeignKeys()
          Returns TableMetaData.foreignKeys.
 

Methods in com.sptci.rwt with parameters of type ForeignKeyMetaData
protected  void TableMetaData.addForeignKey(ForeignKeyMetaData foreignKey)
          Adds the specified foreign key to TableMetaData.foreignKeys.
 

Method parameters in com.sptci.rwt with type arguments of type ForeignKeyMetaData
protected  void TableMetaData.addForeignKeys(Collection<ForeignKeyMetaData> foreignKeys)
          Adds the specified collection of foreign keys to TableMetaData.foreignKeys.
protected  void TableMetaData.setForeignKeys(Collection<ForeignKeyMetaData> foreignKeys)
          Set TableMetaData.foreignKeys.
 

Uses of ForeignKeyMetaData in com.sptci.rwt.webui.model
 

Fields in com.sptci.rwt.webui.model declared as ForeignKeyMetaData
private  ForeignKeyMetaData ForeignKeyView.metaData
          The meta data object whose details are to be displayed.
 

Method parameters in com.sptci.rwt.webui.model with type arguments of type ForeignKeyMetaData
protected  void TableView.addCatalogue(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the catalogue names in the collection to the component
protected  void TableView.addColumn(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the column names in the collection to the component
protected  void TableView.addDeferrability(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the update rules in the collection to the component
protected  void TableView.addDeleteRule(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the update rules in the collection to the component
protected  void TableView.addForeignKeyName(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the foreign key names in the collection to the component
protected  void TableView.addReferencingColumn(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the referencing column names in the collection to the component
protected  void TableView.addSchema(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the schema names in the collection to the component
protected  void TableView.addTable(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the table names in the collection to the component
protected  void TableView.addUpdateRule(Collection<ForeignKeyMetaData> collection, Component parent)
          Add the update rules in the collection to the component
 

Constructors in com.sptci.rwt.webui.model with parameters of type ForeignKeyMetaData
ForeignKeyView(ForeignKeyMetaData metaData)
          Create a new instance of the view using the specified model object.
 

Uses of ForeignKeyMetaData in com.sptci.rwt.webui.tree
 

Constructors in com.sptci.rwt.webui.tree with parameters of type ForeignKeyMetaData
ForeignKeyNode(ForeignKeyMetaData metadata)
          Create a new tree node using the specified metadata object.
 


SPT RWT Application API