-
Method Summary
Returns the type (class) of a column.
int
Returns the number of available columns.
Returns the value of a node in a column.
boolean
Check if a cell of a node in one column is editable.
void
Sets a value for a node in one column.
-
Method Details
-
getColumnCount
int getColumnCount()
Returns the number of available columns.
- Returns:
- Number of Columns
-
getColumnName
String getColumnName(int column)
Returns the column name.
- Parameters:
column
- Column number
- Returns:
- Column name
-
getColumnClass
Class<?> getColumnClass(int column)
Returns the type (class) of a column.
- Parameters:
column
- Column number
- Returns:
- Class
-
getValueAt
Returns the value of a node in a column.
- Parameters:
node
- Node
column
- Column number
- Returns:
- Value of the node in the column
-
isCellEditable
boolean isCellEditable(Object node,
int column)
Check if a cell of a node in one column is editable.
- Parameters:
node
- Node
column
- Column number
- Returns:
- true/false
-
setValueAt
Sets a value for a node in one column.
- Parameters:
aValue
- New value
node
- Node
column
- Column number