| java.lang.Object javax.swing.table.AbstractTableModel com.anthonyeden.lib.util.TableMap
All known Subclasses: com.anthonyeden.lib.util.TableFilter, com.anthonyeden.lib.util.TableSorter,
getColumnClass | public Class getColumnClass(int aColumn)(Code) | | Get the column class for the given column index.
Parameters: aColumn - The column The column class |
getColumnCount | public int getColumnCount()(Code) | | Get the column count.
The column count |
getColumnName | public String getColumnName(int aColumn)(Code) | | Get the column name for the given index.
Parameters: aColumn - The column The column name |
getModel | public TableModel getModel()(Code) | | Get the TableModel which is wrapped by this map.
The TableModel |
getRowCount | public int getRowCount()(Code) | | Get the row count.
The row count |
getValueAt | public Object getValueAt(int aRow, int aColumn)(Code) | | Get the value at the given row and column.
Parameters: aRow - The row Parameters: aColumn - The column The value |
isCellEditable | public boolean isCellEditable(int row, int column)(Code) | | Return true if the cell at the given row and column is editable.
Parameters: row - The row Parameters: column - The column True if the cell is editable |
setModel | public void setModel(TableModel model)(Code) | | Set the TableModel which is wrapped by this map.
Parameters: model - The TableModel |
setValueAt | public void setValueAt(Object aValue, int aRow, int aColumn)(Code) | | Set the value at the given row and column.
Parameters: aValue - The value Parameters: aRow - The row Parameters: aColumn - The column |
tableChanged | public void tableChanged(TableModelEvent e)(Code) | | Fire an event signaling that the table has changed.
Parameters: e - The TableModelEvent |
|
|