org.zaval.lw
Interface Switchable
- All Known Implementing Classes:
- LwCheckbox, LwWinProducer, LwMenuBar
- public interface Switchable
This is callback interface is used by a switch manager to notify when the state
of the switching component has been changed. The switching component can have one of the following
states : "on" or "off".
|
Method Summary |
void |
switched(boolean state)
Invoked when the state of a switching component has been changed. |
switched
public void switched(boolean state)
- Invoked when the state of a switching component has been changed.
- Parameters:
state - the component state. true
if the component has "on" state and false if the
component has "off" state.
|