SPT RWT Application API

Uses of Class
com.sptci.rwt.IndexMetaData

Packages that use IndexMetaData
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 IndexMetaData in com.sptci.rwt
 

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

Methods in com.sptci.rwt that return types with arguments of type IndexMetaData
 Collection<IndexMetaData> IndexAnalyser.analyse(MetaData... parameters)
          Returns a collection of IndexMetaData objects that contain all information pertaining to the indices for the specified table.
 Collection<IndexMetaData> TableMetaData.getIndices()
          Returns TableMetaData.indices.
 

Methods in com.sptci.rwt with parameters of type IndexMetaData
protected  void TableMetaData.addIndex(IndexMetaData index)
          Add the specified index to TableMetaData.indices.
 

Method parameters in com.sptci.rwt with type arguments of type IndexMetaData
protected  void TableMetaData.addIndices(Collection<IndexMetaData> indices)
          Add the specified collection of indices to TableMetaData.indices.
protected  void TableMetaData.setIndices(Collection<IndexMetaData> indices)
          Set TableMetaData.indices.
 

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

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

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

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

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


SPT RWT Application API