SPT Core API

Package com.sptci.echo2.table

Support classes for Table components.

See:
          Description

Interface Summary
PageableTableModel<D> A TableModel used to represent a pageable data set.
SelectionListener<D,S> A genericised EventListener used for receiving notifications of EventObject.
SortableTable<D> A marker interface for Tables that hold data that are sortable.
SortableTableModel<D> A genericised TableModel used to hold instances of objects of the type specified.
 

Class Summary
AbstractTableModel<D> A genericised TableModel used to hold instances of objects of the type specified.
ColumnMetaData A data object used to hold the name and class of a column displayed in the Table.
DatabaseHelper A helper class for DatabaseTableModel to abstract JDBC interactions.
DatabaseTable A Table used to display data contained in a DatabaseTableModel.
DatabaseTableModel A custom TableModel used to represent data contained in in a database table.
DateCellRenderer A TableCellRenderer for rendering objects of type Calendar and Date.
DefaultPageableTableModel<D> A genericised TableModel used to display instances of objects of the type specified.
DefaultSortableTableModel<D> A genericised TableModel used to hold instances of objects of the type specified.
EventObject<D,S> A genericised EventObject used to represent the objects that are displayed in a Table.
HeaderCellRenderer The default renderer to use for table headers.
JDOFilterTableModel<F,D> A table model that uses the JDOFilterTableModel.filter object to filter the data represented in the model.
JDOTable<D> A custom table used to display objects persisted using JDO.
JDOTableModel<D> A generic table model used to display all instances of a specified PersistenceCapable object.
OrderBy A simple bean used to represent a order by clause in a SQL statement.
ResultSetMetaDataProxy A proxy ResultSetMetaData to return non-negative values for the ResultSetMetaData.getScale(int) method.
ResultSetProxy A proxy ResultSet class to return the proxy ResultSetMetaDataProxy to protect against compatibility issues between JDBC standard and SQL standard on number fields declared without precision.
RowSetTable A Table used to display data contained in a RowSetTableModel.
RowSetTableModel A custom TableModel used to represent data contained in RowSet objects.
SortableHeaderCellRenderer The default renderer to use for sortable table headers.
SortListener The action listener used to sort the contents of a SortableTable.
StatementTableModel A custom TableModel used to represent data contained in in a database table.
Table<D> A genericised Table used to display instances of objects of the type specified.
TableModel<D> A genericised TableModel used to hold instances of objects of the type specified.
TableNavigation<D> A navigation component for displaying paging controls for a Table.
TransactionalJDOTableModel<D> A table model that automatically handles data store interactions when adding/deleting rows from the model.
 

Enum Summary
OrderBy.Direction An enumeration of sort directions.
SortableTableModel.Direction The direction in which the current column is sorted.
 

Package com.sptci.echo2.table Description

Support classes for Table components.


SPT Core API