net.sf.jguiraffe.gui.builder.event
Interface WindowListener

All Known Implementing Classes:
AutoReleaseListener, FormController

public interface WindowListener

Definition of an interface that must be implemented by objects that are interested in window related events.

This event listener interface is an abstraction of platform specific window event listener interfaces. It defines callback methods for typical window events like window closing, activation, or iconifying.

Version:
$Id: WindowListener.java 156 2009-03-03 21:04:47Z oheger $
Author:
Oliver Heger

Method Summary
 void windowActivated(WindowEvent event)
          Callback method to notify a listener that a window was activated.
 void windowClosed(WindowEvent event)
          Callback method to notify a listener that a window was closed.
 void windowDeactivated(WindowEvent event)
          Callback method to notify a listener that a window was deactivated.
 void windowDeiconified(WindowEvent event)
          Callback method to notify a listener that a window was deiconified.
 void windowIconified(WindowEvent event)
          Callback method to notify a listener that a window was iconified.
 void windowOpened(WindowEvent event)
          Callback method to notify a listener that a window was opened.
 

Method Detail

windowActivated

void windowActivated(WindowEvent event)
Callback method to notify a listener that a window was activated.

Parameters:
event - the window event

windowClosed

void windowClosed(WindowEvent event)
Callback method to notify a listener that a window was closed.

Parameters:
event - the window event

windowDeactivated

void windowDeactivated(WindowEvent event)
Callback method to notify a listener that a window was deactivated.

Parameters:
event - the window event

windowDeiconified

void windowDeiconified(WindowEvent event)
Callback method to notify a listener that a window was deiconified.

Parameters:
event - the window event

windowIconified

void windowIconified(WindowEvent event)
Callback method to notify a listener that a window was iconified.

Parameters:
event - the window event

windowOpened

void windowOpened(WindowEvent event)
Callback method to notify a listener that a window was opened.

Parameters:
event - the window event


Copyright © 2009 The JGUIraffe Team. All Rights Reserved.