org.xith3d.ui.hud.listeners
Class WindowAdapter

java.lang.Object
  extended by org.xith3d.ui.hud.listeners.WindowAdapter
All Implemented Interfaces:
WindowListener

public class WindowAdapter
extends java.lang.Object
implements WindowListener

A simple adapter class for the WindowListener interface.


Constructor Summary
WindowAdapter()
           
 
Method Summary
 void onWindowClosed(Window window)
          This event is fired when a Window is closed.
 void onWindowHidden(Window window)
          This event is fired when a Window is set invisible.
 void onWindowShown(Window window)
          This event is fired when a Window is set visible.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WindowAdapter

public WindowAdapter()
Method Detail

onWindowClosed

public void onWindowClosed(Window window)
This event is fired when a Window is closed.

Specified by:
onWindowClosed in interface WindowListener
Parameters:
window - the closed Window

onWindowShown

public void onWindowShown(Window window)
This event is fired when a Window is set visible.

Specified by:
onWindowShown in interface WindowListener
Parameters:
window - the shown Window

onWindowHidden

public void onWindowHidden(Window window)
This event is fired when a Window is set invisible.

Specified by:
onWindowHidden in interface WindowListener
Parameters:
window - the hidden Window