public interface CheckableNode
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
isCheckable() |
Tell the view to display a check-box for this node.
|
boolean |
isCheckEnabled() |
Provide the enabled state of the check-box.
|
java.lang.Boolean |
isSelected() |
Provide the selected state of the check-box.
|
void |
setSelected(java.lang.Boolean selected) |
Called by the view when the check-box gets selected/unselected
|
boolean isCheckable()
true if the check-box should be displayed, false otherwise.boolean isCheckEnabled()
true if the check-box should be enabled, false otherwise.java.lang.Boolean isSelected()
true if the check-box should be selected,
false if it should be unselected and
null if the state is unknown.void setSelected(java.lang.Boolean selected)
selected - true if the check-box was selected,
false if the check-box was unselected.Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.