SPT RWT Application API

Uses of Class
com.sptci.rwt.CatalogueMetaData

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

Fields in com.sptci.rwt declared as CatalogueMetaData
private  CatalogueMetaData SchemaMetaData.catalogue
          The CatalogueMetaData that represents the catalog in which the schema exists.
private  CatalogueMetaData ObjectMetaData.catalogue
          A reference to the parent catalogue to which this object belongs.
 

Fields in com.sptci.rwt with type parameters of type CatalogueMetaData
private  Collection<CatalogueMetaData> DBMSMetaData.catalogues
          Collection of catalogues available in the database.
 

Methods in com.sptci.rwt that return CatalogueMetaData
 CatalogueMetaData SchemaMetaData.getCatalogue()
          Returns SchemaMetaData.catalogue.
 CatalogueMetaData ObjectMetaData.getCatalogue()
          Returns ObjectMetaData.catalogue.
 CatalogueMetaData DBMSMetaData.getCatalogue(String name)
          Return the catalogue identified by the name specified.
 

Methods in com.sptci.rwt that return types with arguments of type CatalogueMetaData
 Collection<CatalogueMetaData> CatalogueAnalyser.analyse(MetaData... parameters)
          Returns a collection of CatalogueMetaData objects that contain the basic information pertaining to the catalogues in the database.
 Collection<CatalogueMetaData> DBMSMetaData.getCatalogues()
          Returns DBMSMetaData.catalogues.
 

Methods in com.sptci.rwt with parameters of type CatalogueMetaData
protected  void SchemaMetaData.setCatalogue(CatalogueMetaData catalogue)
          Set SchemaMetaData.catalogue.
protected  void ObjectMetaData.setCatalogue(CatalogueMetaData catalogue)
          Set ObjectMetaData.catalogue.
 

Method parameters in com.sptci.rwt with type arguments of type CatalogueMetaData
protected  void DBMSMetaData.setCatalogues(Collection<CatalogueMetaData> catalogues)
          Set DBMSMetaData.catalogues.
 

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

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

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

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

Constructors in com.sptci.rwt.webui.tree with parameters of type CatalogueMetaData
CatalogueNode(CatalogueMetaData metadata)
          Create a new tree node using the specified metadata object.
SchemasNode(CatalogueMetaData metadata)
          Create a new tree node representing all the available schemas in the specified catalogue.
 


SPT RWT Application API