: 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.event
Interface LwComponentListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LwFocusManager

public interface LwComponentListener
extends java.util.EventListener

This listener interface for receiving light weight component events.


Method Summary
 void compDisabled(LwVCLEvent e)
          Invoked when the light weight component has been disabled.
 void compEnabled(LwVCLEvent e)
          Invoked when the light weight component has been enabled.
 void compHidden(LwVCLEvent e)
          Invoked when the light weight component has been hidden.
 void compShown(LwVCLEvent e)
          Invoked when the light weight component has been shown.
 

Method Detail

compDisabled

public void compDisabled(LwVCLEvent e)
Invoked when the light weight component has been disabled.
Parameters:
e - the specified component event.

compEnabled

public void compEnabled(LwVCLEvent e)
Invoked when the light weight component has been enabled.
Parameters:
e - the specified component event.

compShown

public void compShown(LwVCLEvent e)
Invoked when the light weight component has been shown.
Parameters:
e - the specified component event.

compHidden

public void compHidden(LwVCLEvent e)
Invoked when the light weight component has been hidden.
Parameters:
e - the specified component event.


: up