: 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 LwChildrenListener

All Known Implementing Classes:
LwFilePanel, LwMenuBar, LwPopupLayer, LwWinLayer, LwTree, LwGrid

public interface LwChildrenListener

The interface should be implemented by the components that are interested in handling child components events. As soon as you implement the interface the library event manager will pass child events into childPerformed method. Pay attention that some events types cannot be caught using the interface, for example mouse motion event. The reason is the performance improvement.


Method Summary
 void childPerformed(LwVCLEvent e)
          Invoked whenever the child event has been performed.
 

Method Detail

childPerformed

public void childPerformed(LwVCLEvent e)
Invoked whenever the child event has been performed.
Parameters:
e - the child event.


: up