SPT RWT Application API

Serialized Form


Package com.sptci.rwt

Class com.sptci.rwt.Analyser.CatalogueSchema extends com.sptci.KeyValue<String,String> implements Serializable

Class com.sptci.rwt.CatalogueMetaData extends RootMetaData implements Serializable

Serialized Fields

schemas

Collection<E> schemas
The collection of schema objects that belong to this catalogue.

Class com.sptci.rwt.Category extends Object implements Serializable

Serialized Fields

name

String name
The name of the category.


queries

Map<K,V> queries
The named queries associated with this category.

Class com.sptci.rwt.Column extends Object implements Serializable

Serialized Fields

name

String name
The name of the column.


type

int type
The Types value for the data type of the column.


content

Object content
The object that represents the contents of the column.

Class com.sptci.rwt.ColumnMetaData extends ObjectMetaData implements Serializable

Serialized Fields

type

int type
The data type for the column as values defined in Types.


typeName

String typeName
The database specific name of the column type.


defaultValue

String defaultValue
The default value for this column.


size

int size
The size or precision of the column.


nullable

String nullable
Defines whether the column takes null values or not.


table

TableTypeMetaData table
A reference to the table/view in which this column belongs.

Class com.sptci.rwt.ConnectionData extends Object implements Serializable

Serialized Fields

host

String host
The fully qualified hostname of the database server to connect to.


database

String database
The name of the database to connect to.


port

int port
The port to connect to.


userName

String userName
The database user to connect as.


password

byte[] password
The password for the database user to connect as.

Class com.sptci.rwt.ConnectionException extends RuntimeException implements Serializable

Class com.sptci.rwt.ConnectionParameters extends Object implements Serializable

Serialized Fields

host

String host
The fully qualified hostname of the database server to connect to.


database

String database
The name of the database to connect to.


port

int port
The port to connect to.


userName

String userName
The database user to connect as.


databaseType

String databaseType
The name to use to identify the database engine.


urlPattern

String urlPattern
The JDBC connection url pattern to use. The URL pattern contains encoded values for variables such as $HOST$ etc.


driver

String driver
The fully qualified name of the JDBC driver class.

Class com.sptci.rwt.Connections extends Object implements Serializable

Serialized Fields

databases

TreeMap<K,V> databases
A map used to quickly look up DatabaseType instances by their DatabaseType.name.

Class com.sptci.rwt.DatabaseType extends Object implements Serializable

Serialized Fields

savedConnections

Map<K,V> savedConnections
A map that stores saved ConnectionData identified by a unique name.


name

String name
The name of the database engine represented by this instance.


urlPattern

String urlPattern
The encoded JDBC url pattern to use to build a connection url to the database.


driver

String driver
The fully qualified name of the JDBC driver class.

Class com.sptci.rwt.DBMSMetaData extends MetaData implements Serializable

Serialized Fields

version

String version
The product version as reported by the vendor.


defaultTransaction

DBMSMetaData.Transaction defaultTransaction
The default transaction isolation level used by the database.


jdbcMetaData

JDBCMetaData jdbcMetaData
Metadata about the JDBC driver used to access the database


limitsMetaData

LimitsMetaData limitsMetaData
Metadata about maximum limitsMetaData enforced by the database.


catalogues

Collection<E> catalogues
Collection of catalogues available in the database.


schemas

Collection<E> schemas
Collection of schemas available in the database.

Class com.sptci.rwt.ForeignKeyMetaData extends KeyMetaData implements Serializable

Serialized Fields

referencedSchema

String referencedSchema
The schema in which the table whose column this foreign key references exists.


referencedTable

String referencedTable
The table whose column this foreign key references.


columnMappings

Map<K,V> columnMappings
The columns that comprise this foreign key and the referenced columns. The map is defined as <ColumnMetaData,String> with the key indicating the column on the table and the value indicating the referenced column on ForeignKeyMetaData.referencedTable.


updateRule

ForeignKeyMetaData.Rule updateRule
The UPDATE_RULE for this key.


deleteRule

ForeignKeyMetaData.Rule deleteRule
The DELETE_RULE for this key.


deferrability

ForeignKeyMetaData.Deferrability deferrability
The DEFERRABILITY of this key.

Class com.sptci.rwt.IndexMetaData extends KeyMetaData implements Serializable

Serialized Fields

unique

boolean unique
A flag indicating whether this index represents unique values or not.


type

IndexMetaData.Type type
A field indicating the type of the index.


sortSequence

IndexMetaData.SortSequence sortSequence
A field indicating the sort order used by the index.


cardinality

int cardinality
The cardinality for the index. When IndexMetaData.type is IndexMetaData.Type.Statistic, then this is the number of rows in the table; otherwise, it is the number of unique values in the index.


pages

int pages
The number of pages used for the index. When IndexMetaData.type is IndexMetaData.Type.Statistic, then this is the number of pages used for the table; otherwise, it is the number of pages used for the index.

Class com.sptci.rwt.JDBCMetaData extends MetaData implements Serializable

Serialized Fields

version

String version
The version number of the driver.

Class com.sptci.rwt.KeyMetaData extends MetaData implements Serializable

Serialized Fields

columns

Collection<E> columns
The name of the column(s) on which the key is defined.

See Also:
TableTypeMetaData.getColumn(java.lang.String)

keySequence

int keySequence
A sequence number that indicates the sequence number with a key


table

TableMetaData table
A reference to the table in which this key belongs.

Class com.sptci.rwt.LimitsMetaData extends MetaData implements Serializable

Serialized Fields

characterLength

int characterLength
The maximum number of characters this database allows for a character literal.


columnNameLength

int columnNameLength
The maximum number of characters this database allows for a column name.


columnsInGroupBy

int columnsInGroupBy
The maximum number of columns this database allows in a GROUP BY clause.


columnsInIndex

int columnsInIndex
The maximum number of columns this database allows in an index.


columnsInOrderBy

int columnsInOrderBy
The maximum number of columns this database allows in an ORDER BY clause.


columnsInSelect

int columnsInSelect
The maximum number of columns this database allows in a SELECT list.


columnsInTable

int columnsInTable
The maximum number of columns this database allows in a table.


connections

int connections
The maximum number of concurrent connections to this database that are possible.


cursorNameLength

int cursorNameLength
The maximum number of characters that this database allows in a cursor name.


indexLength

int indexLength
The maximum number of bytes this database allows for an index, including all of the parts of the index.


procedureNameLength

int procedureNameLength
The maximum number of characters that this database allows in a procedure name.


rowSize

int rowSize
The maximum number of bytes this database allows in a single row.


schemaNameLength

int schemaNameLength
The maximum number of characters that this database allows in a schema name.


statementLength

int statementLength
The maximum number of characters this database allows in an SQL statement.


statements

int statements
The maximum number of active statements to this database that can be open at the same time.


tableNameLength

int tableNameLength
The maximum number of characters this database allows in a table name.


tablesInSelect

int tablesInSelect
The maximum number of tables this database allows in a SELECT statement.


userNameLength

int userNameLength
The maximum number of characters this database allows in a user name.

Class com.sptci.rwt.MetaData extends Object implements Serializable

Serialized Fields

name

String name
The name of the object.

Class com.sptci.rwt.ObjectMetaData extends MetaData implements Serializable

Serialized Fields

comment

String comment
The comments associated with the table.


catalogue

CatalogueMetaData catalogue
A reference to the parent catalogue to which this object belongs.


root

RootMetaData root
A reference to the parent catalogue/schema to which this object belongs.

Class com.sptci.rwt.PrimaryKeyMetaData extends KeyMetaData implements Serializable

Class com.sptci.rwt.ProcedureMetaData extends ObjectMetaData implements Serializable

Serialized Fields

dataType

String dataType
The data type returned by the procedure.


userDefinedType

String userDefinedType
The name of the user defined type if ProcedureMetaData.dataType is a user defined type.


body

String body
The SQL content of the procedure.


definition

String definition
The definition of the procedure. This usually includes ProcedureMetaData.body within it

Class com.sptci.rwt.Queries extends Object implements Serializable

Serialized Fields

categories

TreeMap<K,V> categories
A map used to quickly look up Query instances by their Category.name.

Class com.sptci.rwt.Query extends com.sptci.KeyValue<String,String> implements Serializable

Class com.sptci.rwt.QueryException extends RuntimeException implements Serializable

Class com.sptci.rwt.RootMetaData extends MetaData implements Serializable

Serialized Fields

dbmsMetaData

DBMSMetaData dbmsMetaData
A reference to the meta data object for the database.


tables

Collection<E> tables
The collection of TableMetaData objects that represent all the tables available in this schema.


views

Collection<E> views
The collection of ViewMetaData objects that represent all the views available in this schema.


triggers

Collection<E> triggers
The collection of TriggerMetaData objects that represent all the triggers available in this schema.


procedures

Collection<E> procedures
The collection of ProcedureMetaData objects that represent all the procedures available in this schema.


sequences

Collection<E> sequences
The collection of SequenceMetaData objects that represent all the sequences available in this schema.

Class com.sptci.rwt.Row extends Object implements Serializable

Serialized Fields

columns

List<E> columns
The collection of Column instances contained in this row.

Class com.sptci.rwt.Rows extends Object implements Serializable

Serialized Fields

totalRows

int totalRows
The total number of rows available in the ResultSet out of which this object was generated. Note that the Rows.rows collection will usually not contain the same number (usually less) of rows as the total number available.

Since:
Version 1.2

rows

List<E> rows
The collection of Row instances contained in result set.

Class com.sptci.rwt.SchemaMetaData extends RootMetaData implements Serializable

Serialized Fields

catalogue

CatalogueMetaData catalogue
The CatalogueMetaData that represents the catalog in which the schema exists.

Class com.sptci.rwt.SequenceMetaData extends ObjectMetaData implements Serializable

Serialized Fields

dataType

String dataType
The data type for the sequence.


minimum

String minimum
The minimum value of the sequence.


maximum

String maximum
The maximum value of the sequence.


increment

int increment
The value by which the sequence is incremented.


cyclePolicy

String cyclePolicy
The cycle policy for the sequence after hitting maximum value

Class com.sptci.rwt.TableMetaData extends TableTypeMetaData implements Serializable

Serialized Fields

primaryKey

PrimaryKeyMetaData primaryKey
The collection of primary key columns for this table.


foreignKeys

Collection<E> foreignKeys
The collection of foreign key columns for this table.


indices

Collection<E> indices
The collection of foreign key columns for this table.


triggers

Collection<E> triggers
The collection of triggers for this table.

Class com.sptci.rwt.TableTypeMetaData extends ObjectMetaData implements Serializable

Serialized Fields

columns

Collection<E> columns
The collection of columns that belong to this table.


numberOfRows

int numberOfRows
The total number of records in the object.

Since:
Version 1.3

Class com.sptci.rwt.TriggerMetaData extends MetaData implements Serializable

Serialized Fields

table

String table
The table on which the trigger operates.


tableCatalogue

String tableCatalogue
The catalogue to which the table on which the tigger operates belongs. This may be different from the catalogue in which the trigger exists.


tableSchema

String tableSchema
The schema to which the table on which the tigger operates belongs. This may be different from the schema in which the trigger exists.


event

TriggerMetaData.Event event
The event that fires the trigger.


statement

String statement
The statement that is executed by the trigger.


orientation

TriggerMetaData.Orientation orientation
Identifies whether the trigger fires once for each processed row or once for each statement.


timing

TriggerMetaData.Timing timing
The time the trigger fires.


root

RootMetaData root
A reference to the catalogue/schema in which this trigger exists.


tableMetaData

TableMetaData tableMetaData
A reference to the table on which this trigger executes. This will be populated only if the TriggerMetaData.table on which the trigger executes belongs to the same schema.

Class com.sptci.rwt.ViewMetaData extends TableTypeMetaData implements Serializable

Serialized Fields

definition

String definition
The query expression defining the view (null if the view is not owned by a currently enabled role)


checkOption

String checkOption
The check_option column in the information_schema.views view.


updatable

boolean updatable
A flag used to indicate whether the view supports UPDATE and DELETE statements.


insertable

boolean insertable
A flag used to indicate whether the view supports INSERT statements.


Package com.sptci.rwt.webui

Class com.sptci.rwt.webui.BatchQueryExecutorListener extends ExecutorListener implements Serializable

Class com.sptci.rwt.webui.BatchQueryExecutorView extends ExecutorView implements Serializable

Serialized Fields

tabbedPane

TabbedPane tabbedPane
The tabbed pane used to display the results of query execution.


statement

String statement
The SQL statement that is to be displayed in ExecutorView.query when it is initialised.

Class com.sptci.rwt.webui.ConnectionDialogue extends com.sptci.echo2.WindowPane implements Serializable

Serialized Fields

controller

MainController controller
The main controller for the application.


column

Column column
The container used to display all the components.


databaseType

SelectField databaseType
The component used to display configured database engines.


host

TextField host
The component used to specify the hostname of the database server.


port

consultas.echo2consultas.LiveTextField port
The port on wich the database listens for connections.


database

TextField database
The name of the database to connect to.


userName

TextField userName
The component used to enter the user name to login as.


password

PasswordField password
The component used to enter the password to logon with.

Class com.sptci.rwt.webui.ConnectionDialogue.CancelListener extends Object implements Serializable

Class com.sptci.rwt.webui.ConnectionDialogue.DatabaseTypeListener extends Object implements Serializable

Class com.sptci.rwt.webui.ConnectionDialogueListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.ConnectListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.DataSourceListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.DeleteSavedConnectionListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Serialized Fields

databaseType

String databaseType
The database type under which the connection is saved.


name

String name
The name of the saved connection.

Class com.sptci.rwt.webui.DeleteSavedQueryListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Serialized Fields

category

String category
The category under which the query is saved.


name

String name
The name of the saved query.

Class com.sptci.rwt.webui.ExecuteBatchQueryListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.ExecuteQueryListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.ExecutorListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.ExecutorView extends com.sptci.echo2.WindowPane implements Serializable

Serialized Fields

query

TextArea query
The component used to enter the SQL statement to execute.


maxResults

consultas.echo2consultas.LiveTextField maxResults
The component used to specify the maximum number of rows of data to retrieve for select statements.


maxColumnLength

consultas.echo2consultas.LiveTextField maxColumnLength
The component used to specify the maximum number of characters to display in a table column.

Since:
Version 1.3

results

Column results
The component used to display the results after executing a statement.


controller

MainController controller
Parent Controller.


connectionManager

ConnectionManager connectionManager
The connection manager to use to interact with the database.


history

Map<K,V> history
The cache of previously executed statements in this view.

Class com.sptci.rwt.webui.ExportListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.HistoryListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.HistoryView extends com.sptci.echo2.WindowPane implements Serializable

Serialized Fields

view

ExecutorView view
The executor view to which this component is bound.


controller

MainController controller
Parent Controller.

Class com.sptci.rwt.webui.HistoryView.HistoryViewListener extends Object implements Serializable

Class com.sptci.rwt.webui.MainController extends com.sptci.echo2.Controller<MainView> implements Serializable

Serialized Fields

connections

Connections connections
The object that represents saved connections.


queries

Queries queries
The object that represents saved queries.

Class com.sptci.rwt.webui.MainView extends ContentPane implements Serializable

Serialized Fields

controller

MainController controller
The controller for this view component.


menuComponent

MenuComponent menuComponent
The component used to display the menu for the application.


tree

MetaDataTree tree
The component used to display the database object hierarchy.


left

Component left
container used to hold the metadata objects (tree).


right

Component right
The container used to hold all the information displayed in the detail view area (right side).

Class com.sptci.rwt.webui.ManageSavedConnectionsListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.ManageSavedConnectionsView extends com.sptci.echo2.WindowPane implements Serializable

Serialized Fields

controller

MainController controller
The controller used to interact with the application.

Class com.sptci.rwt.webui.ManageSavedQueriesListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.ManageSavedQueriesView extends com.sptci.echo2.WindowPane implements Serializable

Serialized Fields

controller

MainController controller
The controller used to interact with the application.

Class com.sptci.rwt.webui.MenuComponent extends MenuBar implements Serializable

Serialized Fields

controller

MainController controller
The main application controller to use for this component.


savedConnections

Menu savedConnections
The menu used to store saved JDBC connections.


savedQueries

Menu savedQueries
The menu used to store saved SQL statements.

Class com.sptci.rwt.webui.MetaDataTree extends com.sptci.epng.Tree implements Serializable

Serialized Fields

controller

MainController controller
The controller for interacting with the application.

Class com.sptci.rwt.webui.QueryExecutorListener extends ExecutorListener implements Serializable

Class com.sptci.rwt.webui.QueryExecutorView extends ExecutorView implements Serializable

Class com.sptci.rwt.webui.RowsTableModel extends RowTableModel implements Serializable

Serialized Fields

rows

List<E> rows
The list used as the backing store for this model.

Since:
Version 1.2

Class com.sptci.rwt.webui.RowTable extends com.sptci.echo2.table.Table<Row> implements Serializable

Class com.sptci.rwt.webui.RowTableModel extends com.sptci.echo2.table.DefaultPageableTableModel<Row> implements Serializable

Serialized Fields

query

String query
The SQL statement that is to be executed to fetch the results.


maxRows

int maxRows
The maximum number of records to fetch from the database.


maxColumnLength

int maxColumnLength
The maximum number of characters to display in a column.

Since:
Version 1.3

manager

ConnectionManager manager
The connection manager to use to fetch database connections.

Class com.sptci.rwt.webui.SaveConnectionComponent extends Grid implements Serializable

Serialized Fields

name

TextField name
The component used to enter the name for the connection.


controller

MainController controller
The controller to use to interact with the rest of the application.

Class com.sptci.rwt.webui.SaveConnectionListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.SavedConnectionListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Serialized Fields

databaseType

DatabaseType databaseType
The type of database to connect to.


name

String name
The name of the saved connection.

Class com.sptci.rwt.webui.SavedQueryExecutorListener extends ExecutorListener implements Serializable

Serialized Fields

statement

String statement
The query that is to be executed.

Class com.sptci.rwt.webui.SaveQueryComponent extends Grid implements Serializable

Serialized Fields

category

ComboBox category
The component used to display available categories.


name

TextField name
The component used to enter the name for the query.


controller

MainController controller
The controller to use to interact with the rest of the application.

Class com.sptci.rwt.webui.SaveQueryListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Class com.sptci.rwt.webui.SortableRowTable extends RowTable implements Serializable

Class com.sptci.rwt.webui.SortableRowTableModel extends RowTableModel implements Serializable

Serialized Fields

orderBy

String orderBy
The name of the column to use in a SQL order by clause.


Package com.sptci.rwt.webui.model

Class com.sptci.rwt.webui.model.AbstractView extends Column implements Serializable

Class com.sptci.rwt.webui.model.CatalogueView extends AbstractView implements Serializable

Serialized Fields

metaData

CatalogueMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.ColumnsView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.ColumnView extends AbstractView implements Serializable

Serialized Fields

metaData

ColumnMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.ConstraintsView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.DBMSView extends AbstractView implements Serializable

Serialized Fields

metaData

DBMSMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.ForeignKeysView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.ForeignKeyView extends KeyView implements Serializable

Serialized Fields

metaData

ForeignKeyMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.IndexView extends KeyView implements Serializable

Serialized Fields

metaData

IndexMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.IndicesView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.JDBCView extends AbstractView implements Serializable

Serialized Fields

metaData

JDBCMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.KeyView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.LimitsView extends AbstractView implements Serializable

Serialized Fields

metaData

LimitsMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.PrimaryKeysView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.PrimaryKeyView extends AbstractView implements Serializable

Serialized Fields

metaData

PrimaryKeyMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.ProceduresView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.ProcedureView extends SourceView implements Serializable

Serialized Fields

metaData

ProcedureMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.SchemasView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.SchemaView extends AbstractView implements Serializable

Serialized Fields

metaData

SchemaMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.SequencesView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.SequenceView extends AbstractView implements Serializable

Serialized Fields

metaData

SequenceMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.SourceView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.TablesView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.TableTypeDataListener extends com.sptci.echo2.Listener<MainController> implements Serializable

Serialized Fields

metaData

TableTypeMetaData metaData
The metadata object for the table whose data is to be displayed.

Class com.sptci.rwt.webui.model.TableTypeDataView extends Column implements Serializable

Serialized Fields

metaData

TableTypeMetaData metaData
The meta data object whose data is being displayed.


model

SortableRowTableModel model
The TableModel used to build the Table in which the data is displayed.

Class com.sptci.rwt.webui.model.TableView extends AbstractView implements Serializable

Serialized Fields

metaData

TableMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.TriggersView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.TriggerView extends SourceView implements Serializable

Serialized Fields

metaData

TriggerMetaData metaData
The meta data object whose details are to be displayed.

Class com.sptci.rwt.webui.model.ViewsView extends AbstractView implements Serializable

Class com.sptci.rwt.webui.model.ViewView extends SourceView implements Serializable

Serialized Fields

metaData

ViewMetaData metaData
The meta data object whose details are to be displayed.


Package com.sptci.rwt.webui.style

Class com.sptci.rwt.webui.style.BatchQueryExecutorPane extends ExecutorPane implements Serializable

Class com.sptci.rwt.webui.style.DisplayArea extends com.sptci.echo2.style.General implements Serializable

Class com.sptci.rwt.webui.style.ExecutorPane extends com.sptci.echo2.style.General implements Serializable

Class com.sptci.rwt.webui.style.GridTitleLabel extends com.sptci.echo2.style.BoldLabel implements Serializable

Class com.sptci.rwt.webui.style.MainSplitPane extends com.sptci.echo2.style.General implements Serializable

Class com.sptci.rwt.webui.style.Query extends com.sptci.echo2.style.TextComponent implements Serializable

Class com.sptci.rwt.webui.style.QueryExecutorPane extends ExecutorPane implements Serializable

Class com.sptci.rwt.webui.style.SaveLabel extends com.sptci.echo2.style.Label implements Serializable

Class com.sptci.rwt.webui.style.StyleSheet extends com.sptci.epng.style.StyleSheet implements Serializable


Package com.sptci.rwt.webui.tree

Class com.sptci.rwt.webui.tree.AbstractNode extends com.sptci.epng.TreeNode<S extends MetaData> implements Serializable

Class com.sptci.rwt.webui.tree.CatalogueNode extends AbstractNode<CatalogueMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ColumnNode extends LeafNode<ColumnMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ColumnsNode extends ContainerNode<TableTypeMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ConstraintsNode extends ContainerNode<TableMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ContainerNode extends AbstractNode<S extends MetaData> implements Serializable

Serialized Fields

metadata

MetaData metadata
The MetaData object associated with this node.

Class com.sptci.rwt.webui.tree.DBMSNode extends AbstractNode<DBMSMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ForeignKeyNode extends LeafNode<ForeignKeyMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ForeignKeysNode extends ContainerNode<TableMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.IndexNode extends LeafNode<IndexMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.IndicesNode extends ContainerNode<TableMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.LeafNode extends AbstractNode<S extends MetaData> implements Serializable

Class com.sptci.rwt.webui.tree.PrimaryKeyNode extends LeafNode<PrimaryKeyMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.PrimaryKeysNode extends ContainerNode<TableMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ProcedureNode extends LeafNode<ProcedureMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ProceduresNode extends ContainerNode<RootMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.SchemaNode extends AbstractNode<SchemaMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.SchemasNode extends ContainerNode<CatalogueMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.SequenceNode extends LeafNode<SequenceMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.SequencesNode extends ContainerNode<RootMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.TableNode extends AbstractNode<TableMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.TablesNode extends ContainerNode<RootMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.TriggerNode extends LeafNode<TriggerMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.TriggersNode extends ContainerNode<S extends MetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ViewNode extends AbstractNode<ViewMetaData> implements Serializable

Class com.sptci.rwt.webui.tree.ViewsNode extends ContainerNode<RootMetaData> implements Serializable


SPT RWT Application API