org.zaval.lw.event
Interface LwComponentListener
- All Superinterfaces:
- java.util.EventListener
- All Known Implementing Classes:
- LwFocusManager
- public interface LwComponentListener
- extends java.util.EventListener
This listener interface for receiving light weight component events.
compDisabled
public void compDisabled(LwVCLEvent e)
- Invoked when the light weight component has been disabled.
- Parameters:
e - the specified component event.
compEnabled
public void compEnabled(LwVCLEvent e)
- Invoked when the light weight component has been enabled.
- Parameters:
e - the specified component event.
compShown
public void compShown(LwVCLEvent e)
- Invoked when the light weight component has been shown.
- Parameters:
e - the specified component event.
compHidden
public void compHidden(LwVCLEvent e)
- Invoked when the light weight component has been hidden.
- Parameters:
e - the specified component event.
|