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.
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.
|