nextapp.echo.event
Interface WindowListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
WindowAdapter

public interface WindowListener
extends java.util.EventListener

The listener interface for receiving window events.

See Also:
Window, WindowEvent, WindowAdapter

Method Summary
 void windowClosed(WindowEvent e)
          Invoked when a window has been closed.
 void windowClosing(WindowEvent e)
          Invoked immediately prior to a window closing.
 void windowOpened(WindowEvent e)
          Invoked when a window is opened.
 

Method Detail

windowClosed

void windowClosed(WindowEvent e)
Invoked when a window has been closed.

Parameters:
e - A WindowEvent event describing the action.

windowClosing

void windowClosing(WindowEvent e)
Invoked immediately prior to a window closing.

Parameters:
e - A WindowEvent event describing the action.

windowOpened

void windowOpened(WindowEvent e)
Invoked when a window is opened.

Parameters:
e - A WindowEvent event describing the action.