gishur.gui2.event
Interface VisibilityListener
- All Superinterfaces:
- java.util.EventListener
- public interface VisibilityListener
- extends java.util.EventListener
The listener interface for receiving visibility related events of
DisplayObject
s. These events will be generated by
DrawObject.show(boolean)
and DrawObject.hide(boolean)
operations.
- Version:
- 1.0
- Author:
- Thomas Wolf
onShow
public void onShow(DrawEvent e)
- Invoked when a
DisplayObject
became visible.
- Parameters:
e
- the DrawEvent
onHide
public void onHide(DrawEvent e)
- Invoked when a
DisplayObject
became unvisible.
- Parameters:
e
- the DrawEvent