| java.lang.Object javax.swing.table.AbstractTableModel org.isqlviewer.swing.outline.TreeTableModelAdapter
TreeTableModelAdapter | public class TreeTableModelAdapter extends AbstractTableModel (Code) | | TreeTableModel is the model used by a JTreeTable.
It extends TreeModel to add methods for getting inforamtion about the set of columns each node in the TreeTableModel
may have. Each column, like a column in a TableModel, has a name and a type associated with it. Each node in the
TreeTableModel can return a value for each of the columns and set that value if isCellEditable() returns true.
author: Philip Milne author: Scott Violet |
delayedFireTableDataChanged | protected void delayedFireTableDataChanged()(Code) | | Invokes fireTableDataChanged after all the pending events have been processed. SwingUtilities.invokeLater is used
to handle this.
|
getColumnClass | public Class> getColumnClass(int column)(Code) | | |
getColumnCount | public int getColumnCount()(Code) | | |
getRowCount | public int getRowCount()(Code) | | |
getValueAt | public Object getValueAt(int row, int column)(Code) | | |
isCellEditable | public boolean isCellEditable(int row, int column)(Code) | | |
setValueAt | public void setValueAt(Object value, int row, int column)(Code) | | |
|
|