echopointng.treetable
Interface TreeTableModel

All Superinterfaces:
TreeModel
All Known Implementing Classes:
AbstractTreeTableModel, DefaultTreeTableModel

public interface TreeTableModel
extends TreeModel

TreeTableModel is a TreeModel that also adds TableModel like column/row functionality.


Method Summary
 java.lang.Class getColumnClass(int column)
           
 int getColumnCount()
           
 java.lang.String getColumnName(int column)
           
 java.lang.Object getValueAt(java.lang.Object node, int column)
          Much like the TableModel.getValueAt() except that it asks for a value in the context of a TreeModel node.
 
Methods inherited from interface echopointng.tree.TreeModel
addTreeModelListener, getChild, getChildCount, getIndexOfChild, getRoot, isLeaf, removeTreeModelListener, valueForPathChanged
 

Method Detail

getColumnClass

java.lang.Class getColumnClass(int column)
See Also:
TableModel.getColumnClass(int)

getColumnCount

int getColumnCount()
See Also:
TableModel.getColumnCount()

getColumnName

java.lang.String getColumnName(int column)
See Also:
TableModel.getColumnName(int)

getValueAt

java.lang.Object getValueAt(java.lang.Object node,
                            int column)
Much like the TableModel.getValueAt() except that it asks for a value in the context of a TreeModel node.

See Also:
TableModel.getValueAt(int, int)