com.glaivestone.mv
Interface WindowEventListener

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
SessionControlPolicy
All Known Implementing Classes:
BasicSessionControlPolicy, WindowEventAdaptor

public interface WindowEventListener
extends java.util.EventListener

Listener interface for receiving window life-cycle event notifications.

Author:
Deb Lewis

Method Summary
 void confirmWindowClose(WindowEvent event)
          Confirmation event that a window is about to be closed.
 void windowClosed(WindowEvent event)
          Notification event that a window has been closed.
 void windowClosing(WindowEvent event)
          Notification event that a window is about to be closed.
 void windowOpened(WindowEvent event)
          Notification event that a window has been opened.
 

Method Detail

confirmWindowClose

public void confirmWindowClose(WindowEvent event)
                        throws VetoException
Confirmation event that a window is about to be closed. The proposed close operation can be vetoed by a listener.

VetoException

windowClosing

public void windowClosing(WindowEvent event)
Notification event that a window is about to be closed.


windowClosed

public void windowClosed(WindowEvent event)
Notification event that a window has been closed.


windowOpened

public void windowOpened(WindowEvent event)
Notification event that a window has been opened.


GFL 1.1 API