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.
childPerformed
public void childPerformed(LwVCLEvent e)
- Invoked whenever the child event has been performed.
- Parameters:
e - the child event.
|