nextapp.echo.event
Class WindowAdapter

java.lang.Object
  extended by nextapp.echo.event.WindowAdapter
All Implemented Interfaces:
java.io.Serializable, java.util.EventListener, WindowListener

public class WindowAdapter
extends java.lang.Object
implements java.io.Serializable, WindowListener

An adapter class that implements all methods of the WindowListener interface with empty methods.

See Also:
Window, WindowEvent, WindowListener, Serialized Form

Constructor Summary
WindowAdapter()
           
 
Method Summary
 void windowClosed(WindowEvent e)
          An empty implementation of the required WindowListener method.
 void windowClosing(WindowEvent e)
          An empty implementation of the required WindowListener method.
 void windowOpened(WindowEvent e)
          An empty implementation of the required WindowListener method.
 
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

windowClosed

public void windowClosed(WindowEvent e)
An empty implementation of the required WindowListener method.

Specified by:
windowClosed in interface WindowListener
Parameters:
e - A WindowEvent event describing the action.
See Also:
WindowListener.windowClosed(WindowEvent)

windowClosing

public void windowClosing(WindowEvent e)
An empty implementation of the required WindowListener method.

Specified by:
windowClosing in interface WindowListener
Parameters:
e - A WindowEvent event describing the action.
See Also:
WindowListener.windowClosing(WindowEvent)

windowOpened

public void windowOpened(WindowEvent e)
An empty implementation of the required WindowListener method.

Specified by:
windowOpened in interface WindowListener
Parameters:
e - A WindowEvent event describing the action.
See Also:
WindowListener.windowOpened(WindowEvent)