gishur.gui2.event
Interface EnableListener

All Superinterfaces:
java.util.EventListener

public interface EnableListener
extends java.util.EventListener

The listener interface for receiving enable / disable events of InputHandlers. These events will be generated by InputHandler.enable() and InputHandler.disable() operations.

Version:
1.0
Author:
Thomas Wolf

Method Summary
 void onDisable(DrawEvent e)
          Invoked when a InputHandler was disabled.
 void onEnable(DrawEvent e)
          Invoked when a InputHandler was enabled.
 

Method Detail

onEnable

public void onEnable(DrawEvent e)
Invoked when a InputHandler was enabled.
Parameters:
e - the DrawEvent

onDisable

public void onDisable(DrawEvent e)
Invoked when a InputHandler was disabled.
Parameters:
e - the DrawEvent