public interface TreeTableModel extends TreeModel
| Modifier and Type | Method and Description |
|---|---|
Class<?> |
getColumnClass(int column) |
int |
getColumnCount() |
String |
getColumnName(int column) |
Object |
getValueAt(Object node,
int column) |
boolean |
isCellEditable(Object node,
int column)
Indicates whether the the value for node
node,
at column number column is editable. |
void |
setValueAt(Object aValue,
Object node,
int column)
Sets the value for node
node,
at column number column. |
addTreeModelListener, getChild, getChildCount, getIndexOfChild, getRoot, isLeaf, removeTreeModelListener, valueForPathChangedint getColumnCount()
String getColumnName(int column)
column - the column numbercolumn.Class<?> getColumnClass(int column)
column - the column numbercolumn.Object getValueAt(Object node, int column)
node - the nodecolumn - the column numbernode,
at column number column.boolean isCellEditable(Object node, int column)
node,
at column number column is editable.node - the node.column - the column numbervoid setValueAt(Object aValue, Object node, int column)
node,
at column number column.aValue - the value to setnode - the node to set the value oncolumn - the column numberCopyright © 2001–2015. All rights reserved.