SPT RWT Application API

Uses of Class
com.sptci.rwt.ConnectionManager

Packages that use ConnectionManager
com.sptci.rwt A database abstraction API for analysing and interacting with relational databases using JDBC. 
com.sptci.rwt.webui The primary package for the Echo2/EPNG based web UI built around the com.sptci.rwt database abstraction API. 
 

Uses of ConnectionManager in com.sptci.rwt
 

Fields in com.sptci.rwt declared as ConnectionManager
(package private) static ConnectionManager CreateTestObjects.manager
           
protected  ConnectionManager Analyser.manager
          The connection manager to use to fetch connections.
protected  ConnectionManager AbstractQueryExecutor.manager
          The manager to use to fetch database connections.
 

Constructors in com.sptci.rwt with parameters of type ConnectionManager
AbstractProcedureAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
AbstractQueryExecutor(ConnectionManager manager)
          Create a new instance using the specified manager to fetch connections.
AbstractSequenceAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
AbstractTriggerAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
AbstractViewAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
Analyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
BatchQueryExecutor(ConnectionManager manager)
          Create a new instance using the specified manager to fetch connections.
CatalogueAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
ColumnAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
DBMSAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
ForeignKeyAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
IndexAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
KeyAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
OracleProcedureAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
OracleSequenceAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
OracleTriggerAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
OracleViewAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
PrimaryKeyAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
ProcedureAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
QueryExecutor(ConnectionManager manager)
          Create a new instance using the specified manager to fetch connections.
SchemaAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
SequenceAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
StandardProcedureAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
StandardSequenceAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
StandardTriggerAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
StandardViewAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
TableAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
TableTypeAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
TriggerAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
ViewAnalyser(ConnectionManager manager)
          Create a new instance of the class using the specified connection manager.
 

Uses of ConnectionManager in com.sptci.rwt.webui
 

Fields in com.sptci.rwt.webui declared as ConnectionManager
protected  ConnectionManager ExecutorView.connectionManager
          The connection manager to use to interact with the database.
protected  ConnectionManager RowTableModel.manager
          The connection manager to use to fetch database connections.
private  ConnectionManager ExcelDownloadProvider.manager
          The connection manager to use to fetch database connection.
 

Methods in com.sptci.rwt.webui that return ConnectionManager
 ConnectionManager MainController.getConnectionManager()
          Get the connection manager in use by the session.
 ConnectionManager ExecutorView.getConnectionManager()
          Returns ExecutorView.connectionManager.
 ConnectionManager RowTableModel.getManager()
          Returns RowTableModel.manager.
 

Methods in com.sptci.rwt.webui with parameters of type ConnectionManager
 void MainController.setConnectionManager(ConnectionManager manager)
          Set the connection manager to use for the session.
 

Constructors in com.sptci.rwt.webui with parameters of type ConnectionManager
ExcelDownloadProvider(String query, ConnectionManager manager)
          Create a new instance of the download provider using the specified values.
RowTableModel(String query, int maxRows, int maxColumnLength, ConnectionManager manager)
          Create a new instance of the table model using the specified collection of Row objects.
SortableRowTableModel(String query, int maxRows, int maxColumnLength, ConnectionManager manager)
          Create a new instance of the table model using the specified collection of Row objects.
 


SPT RWT Application API