public interface IToggle
| Modifier and Type | Method and Description |
|---|---|
void |
deselect()
Sets the state of the associated object to
notSelected. |
State |
getState()
Returns the state of the associated object.
|
void |
indeterminate()
Sets the state of the associated object to
indeterminate. |
void |
select()
Sets the state of the associated object to
selected. |
void |
setState(State state)
Sets the state of the associated object to the specified
state.
|
void setState(State state)
Statevoid select()
selected. The UnableToPerformActionException exception is thrown if
this action cannot be performed.void deselect()
notSelected. The UnableToPerformActionException exception is thrown if
this action cannot be performed.void indeterminate()
indeterminate. The UnableToPerformActionException exception is thrown if
this action cannot be performed.