Package groovy.inspect.swingui
Class TableMap
- java.lang.Object
- 
- javax.swing.table.AbstractTableModel
- 
- groovy.inspect.swingui.TableMap
 
 
- 
- All Implemented Interfaces:
- Serializable,- EventListener,- TableModelListener,- TableModel
 - Direct Known Subclasses:
- TableSorter
 
 @Deprecated public class TableMap extends AbstractTableModel implements TableModelListener Deprecated.In a chain of data manipulators some behaviour is common. TableMap provides most of this behaviour and can be subclassed by filters that only need to override a handful of specific methods. TableMap implements TableModel by routing all requests to its model, and TableModelListener by routing all events to its listeners. Inserting a TableMap which has not been subclassed into a chain of table filters should have no effect.- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected TableModelmodelDeprecated.- 
Fields inherited from class javax.swing.table.AbstractTableModellistenerList
 
- 
 - 
Constructor SummaryConstructors Constructor Description TableMap()Deprecated.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ClassgetColumnClass(int aColumn)Deprecated.intgetColumnCount()Deprecated.StringgetColumnName(int aColumn)Deprecated.TableModelgetModel()Deprecated.intgetRowCount()Deprecated.ObjectgetValueAt(int aRow, int aColumn)Deprecated.booleanisCellEditable(int row, int column)Deprecated.voidsetModel(TableModel model)Deprecated.voidsetValueAt(Object aValue, int aRow, int aColumn)Deprecated.voidtableChanged(TableModelEvent e)Deprecated.- 
Methods inherited from class javax.swing.table.AbstractTableModeladdTableModelListener, findColumn, fireTableCellUpdated, fireTableChanged, fireTableDataChanged, fireTableRowsDeleted, fireTableRowsInserted, fireTableRowsUpdated, fireTableStructureChanged, getListeners, getTableModelListeners, removeTableModelListener
 
- 
 
- 
- 
- 
Field Detail- 
modelprotected TableModel model Deprecated.
 
- 
 - 
Method Detail- 
getModelpublic TableModel getModel() Deprecated.
 - 
setModelpublic void setModel(TableModel model) Deprecated.
 - 
getValueAtpublic Object getValueAt(int aRow, int aColumn) Deprecated.- Specified by:
- getValueAtin interface- TableModel
 
 - 
setValueAtpublic void setValueAt(Object aValue, int aRow, int aColumn) Deprecated.- Specified by:
- setValueAtin interface- TableModel
- Overrides:
- setValueAtin class- AbstractTableModel
 
 - 
getRowCountpublic int getRowCount() Deprecated.- Specified by:
- getRowCountin interface- TableModel
 
 - 
getColumnCountpublic int getColumnCount() Deprecated.- Specified by:
- getColumnCountin interface- TableModel
 
 - 
getColumnNamepublic String getColumnName(int aColumn) Deprecated.- Specified by:
- getColumnNamein interface- TableModel
- Overrides:
- getColumnNamein class- AbstractTableModel
 
 - 
getColumnClasspublic Class getColumnClass(int aColumn) Deprecated.- Specified by:
- getColumnClassin interface- TableModel
- Overrides:
- getColumnClassin class- AbstractTableModel
 
 - 
isCellEditablepublic boolean isCellEditable(int row, int column)Deprecated.- Specified by:
- isCellEditablein interface- TableModel
- Overrides:
- isCellEditablein class- AbstractTableModel
 
 - 
tableChangedpublic void tableChanged(TableModelEvent e) Deprecated.- Specified by:
- tableChangedin interface- TableModelListener
 
 
- 
 
-