| Package | org.aswing.tree |
| Interface | public interface TreeCell extends Cell |
| Implementors | AbstractCellEditor, DefaultTreeCell, GeneralTreeCellFactory |
| Method | Defined by | ||
|---|---|---|---|
![]() |
Return the represent component of this cell.
| Cell | |
![]() |
getCellValue():*
Returns the value of the cell.
| Cell | |
![]() |
setCellValue(value:*):void
Sets the value of this cell.
| Cell | |
|
setTreeCellStatus(tree:JTree, selected:Boolean, expanded:Boolean, leaf:Boolean, row:int):void
Sets the table cell status, include the owner-JTable isSelected, row position, column position.
| TreeCell | ||
| setTreeCellStatus | () | method |
public function setTreeCellStatus(tree:JTree, selected:Boolean, expanded:Boolean, leaf:Boolean, row:int):voidSets the table cell status, include the owner-JTable isSelected, row position, column position.
Parameterstree:JTree — cell's owner, a JTable
|
|
selected:Boolean — true indicated the cell selected, false not selected.
|
|
expanded:Boolean — true the node is currently expanded, false not.
|
|
leaf:Boolean — true the node represets a leaf, false not.
|
|
row:int — the row position
|