org.zaval.lw.event
Interface LwFocusListener
- All Superinterfaces:
- java.util.EventListener
- All Known Implementing Classes:
- LwCompList, LwNotebook, LwTextField
- public interface LwFocusListener
- extends java.util.EventListener
This listener interface for receiving light weight focus events.
focusGained
public void focusGained(LwVCLEvent e)
- Invoked when the light weight component gained focus.
- Parameters:
e - the specified focus event.
focusLost
public void focusLost(LwVCLEvent e)
- Invoked when the light weight component lost focus.
- Parameters:
e - the specified focus event.
|