ptolemy.gui
Interface CloseListener


public interface CloseListener

This is an interface for listeners that need to be informed when a window closes. Note that this is a very small subset of what Java's WindowListener interface does. This class is a workaround for a bug in Java's AWT, where components are not informed in any way when the window that contains them is closed, even though they can have registered listeners. The listeners are never called, unless the component is a top-level window. A listener that implements this interface, by contrast, is informed regardless of whether it is at the top level. This is used, for example, by the ComponentDialog class.

Since:
Ptolemy II 1.0
Version:
$Id: CloseListener.java 38798 2005-07-08 20:00:01Z cxh $
Author:
Edward A. Lee
See Also:
ComponentDialog
Accepted Rating:
Green (janneck)
Proposed Rating:
Green (eal)

Method Summary
 void windowClosed(java.awt.Window window, java.lang.String button)
          Notify that the specified window has closed.
 

Method Detail

windowClosed

void windowClosed(java.awt.Window window,
                  java.lang.String button)
Notify that the specified window has closed. The second argument, if non-null, gives the name of the button that was used to close the window.

Parameters:
window - The window that closed.
button - The name of the button that was used to close the window.