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 DisplayObjects. These events will be generated by DrawObject.show(boolean) and DrawObject.hide(boolean) operations.

Version:
1.0
Author:
Thomas Wolf

Method Summary
 void onHide(DrawEvent e)
          Invoked when a DisplayObject became unvisible.
 void onShow(DrawEvent e)
          Invoked when a DisplayObject became visible.
 

Method Detail

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