: Download: FAQ: Licensing: Support: Contact ME
LwVCL Home
Introduction
Overview
Screen Shots
On-line Demos
Requirements
Further Plans
Docs
Tutorial
How-to (PDF)
API
FAQ
Download
Latest version

Home > J2SE > API

Overview  Package   Class  Tree  Deprecated  Index  Help 

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.
 

Method Detail

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.


: up