| org.apache.jorphan.gui.TreeTableModel
All known Subclasses: org.apache.jorphan.gui.AbstractTreeTableModel,
TreeTableModel | public interface TreeTableModel extends TableModel(Code) | | This is a basic interface for TreeTableModel that extends TableModel.
It's pretty minimal and isn't as full featured at other implementations.
|
getValueAt | public Object getValueAt(Object node, int col)(Code) | | The method is similar to getValueAt(int,int). Instead of int,
the row is an object.
Parameters: node - Parameters: col - the value at the column |
isCellEditable | public boolean isCellEditable(Object node, int col)(Code) | | the method is similar to isCellEditable(int,int). Instead of int,
the row is an object.
Parameters: node - Parameters: col - if cell is editable |
setValueAt | public void setValueAt(Object val, Object node, int column)(Code) | | the method is similar to isCellEditable(int,int). Instead of int,
the row is an object.
Parameters: val - Parameters: node - Parameters: column - |
|
|