| br.com.igor.beans.table.TreeTableModel
All known Subclasses: br.com.igor.beans.table.AbstractTreeTableModel,
TreeTableModel | public interface TreeTableModel extends TreeModel(Code) | | TreeTableModel is the model used by a JTreeTable. It extends TreeModel to add methods for getting
information 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 |
Method Summary | |
public Class | getColumnClass(int column) Returns the type for column number column . | public int | getColumnCount() Returns the number of available columns. | public String | getColumnName(int column) Returns the name for column number column . | public Object | getValueAt(Object node, int column) Returns the value to be displayed for node node , at column number column . | public boolean | isCellEditable(Object node, int column) Indicates whether the the value for node node , at column number column
is editable. | public void | setValueAt(Object aValue, Object node, int column) Sets the value for node node , at column number column . |
getColumnClass | public Class getColumnClass(int column)(Code) | | Returns the type for column number column .
Parameters: column - Coluna Class |
getColumnCount | public int getColumnCount()(Code) | | Returns the number of available columns.
Nomero de colunas |
getColumnName | public String getColumnName(int column)(Code) | | Returns the name for column number column .
Parameters: column - Returns the name for column number column . |
getValueAt | public Object getValueAt(Object node, int column)(Code) | | Returns the value to be displayed for node node , at column number column .
Parameters: node - No Parameters: column - Coluna Valor |
isCellEditable | public boolean isCellEditable(Object node, int column)(Code) | | Indicates whether the the value for node node , at column number column
is editable.
Parameters: node - Nó Parameters: column - Coluna Se for editavel True |
setValueAt | public void setValueAt(Object aValue, Object node, int column)(Code) | | Sets the value for node node , at column number column .
Parameters: aValue - Valor Parameters: node - Nó Parameters: column - Coluna |
|
|