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

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LwCombo, LwWindow

public interface LwWinListener
extends java.util.EventListener

This is listener interface for receiving light weight window events.


Method Summary
 void winActivated(LwLayer winLayer, LwComponent target)
          Invoked when the light weight window component has been activated.
 void winClosed(LwLayer winLayer, LwComponent target)
          Invoked when the light weight window component has been closed.
 void winDeactivated(LwLayer winLayer, LwComponent target)
          Invoked when the light weight window component has been deactivated.
 void winOpened(LwLayer winLayer, LwComponent target)
          Invoked when the light weight window component has been opened.
 

Method Detail

winOpened

public void winOpened(LwLayer winLayer,
                      LwComponent target)
Invoked when the light weight window component has been opened.
Parameters:
winLayer - the specified window layer where the window resided.
target - the specified window component.

winClosed

public void winClosed(LwLayer winLayer,
                      LwComponent target)
Invoked when the light weight window component has been closed.
Parameters:
winLayer - the specified window layer where the window resided.
target - the specified window component.

winActivated

public void winActivated(LwLayer winLayer,
                         LwComponent target)
Invoked when the light weight window component has been activated.
Parameters:
winLayer - the specified window layer where the window resided.
target - the specified window component.

winDeactivated

public void winDeactivated(LwLayer winLayer,
                           LwComponent target)
Invoked when the light weight window component has been deactivated.
Parameters:
winLayer - the specified window layer where the window resided.
target - the specified window component.


: up