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

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

public interface LwContainerListener
extends java.util.EventListener

This listener interface for receiving light weight container events.


Method Summary
 void compAdded(LwContainerEvent e)
          Invoked when the light weight component has been added to the container.
 void compRemoved(LwContainerEvent e)
          Invoked when the light weight component has been removed from the container.
 

Method Detail

compAdded

public void compAdded(LwContainerEvent e)
Invoked when the light weight component has been added to the container.
Parameters:
e - the specified container event.

compRemoved

public void compRemoved(LwContainerEvent e)
Invoked when the light weight component has been removed from the container.
Parameters:
e - the specified container event.


: up