org.apache.jorphan.gui
Interface TreeTableModel
- TableModel
- AbstractTreeTableModel, DefaultTreeTableModel
public interface TreeTableModel
extends TableModel
This is a basic interface for TreeTableModel that extends TableModel.
It's pretty minimal and isn't as full featured at other implementations.
Object | getValueAt(Object node, int col) - The method is similar to getValueAt(int,int).
|
boolean | isCellEditable(Object node, int col) - the method is similar to isCellEditable(int,int).
|
void | setValueAt(Object val, Object node, int column) - the method is similar to isCellEditable(int,int).
|
getValueAt
public Object getValueAt(Object node,
int col)
The method is similar to getValueAt(int,int). Instead of int,
the row is an object.
isCellEditable
public boolean isCellEditable(Object node,
int col)
the method is similar to isCellEditable(int,int). Instead of int,
the row is an object.
setValueAt
public void setValueAt(Object val,
Object node,
int column)
the method is similar to isCellEditable(int,int). Instead of int,
the row is an object.
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.