| Package | Description |
|---|---|
| oracle.javatools.controls.nicetable |
Customized JTable implementation that adds support for several useful features.
|
| oracle.jdeveloper.vcs.vop |
| Class and Description |
|---|
| NiceTableModel
Deprecated.
replaced by methods on
GenericBaseTableModel. |
| NiceTablePersistentSettings
Deprecated.
replaced by
GenericTablePersistentSettings. |
| Class and Description |
|---|
| NiceTable
Deprecated.
GenericTable (uic:oracle.javatools.ui.table) is the standard component for all table implementations. This class is now obsolete. Please transition existing uses of NiceTable to GenericTable.
|
| NiceTableCellRenderer
Deprecated.
replaced by
GenericTableCellRenderer and DefaultTableCellRenderer. You should make any renderer class based on this class extend DefaultTableCellRenderer, supply that as the default renderer to the GenericTableCellRenderer constructor, and set the GenericTableCellRenderer as the renderer, i.e.:
class MyTableCellRenderer extends NiceTableCellRenderer {}
...
tableColumn.setCellRenderer(new MyTableCellRenderer());
becomes:
class MyTableCellRenderer extends DefaultTableCellRenderer {}
...
tableColumn.setCellRenderer(new GenericTableCellRenderer(new MyTableCellRenderer()));
|