SPT RWT Application API

Uses of Class
com.sptci.rwt.DatabaseType

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

Fields in com.sptci.rwt with type parameters of type DatabaseType
private  TreeMap<String,DatabaseType> Connections.databases
          A map used to quickly look up DatabaseType instances by their name.
 

Methods in com.sptci.rwt that return DatabaseType
 DatabaseType Connections.getDatabaseType(String name)
          Returns the DatabaseType identified by the name parameter specified.
 

Methods in com.sptci.rwt that return types with arguments of type DatabaseType
 Collection<DatabaseType> Connections.getDatabaseTypes()
          Returns Connections.databases.
 

Uses of DatabaseType in com.sptci.rwt.webui
 

Fields in com.sptci.rwt.webui declared as DatabaseType
private  DatabaseType SavedConnectionListener.databaseType
          The type of database to connect to.
 

Methods in com.sptci.rwt.webui with parameters of type DatabaseType
private  Component ManageSavedConnectionsView.createDatabaseType(DatabaseType type)
          Create the component that displays the saved connections in a specified database type.
 

Constructors in com.sptci.rwt.webui with parameters of type DatabaseType
SavedConnectionListener(DatabaseType databaseType, String name, MainController controller)
          Create a new instance of the listener using the specified query and controller.
 


SPT RWT Application API