org.apache.pivot.wtk
Class WindowListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.WindowListener.Adapter
All Implemented Interfaces:
WindowListener
Enclosing interface:
WindowListener

public static class WindowListener.Adapter
extends Object
implements WindowListener

Window listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.WindowListener
WindowListener.Adapter
 
Constructor Summary
WindowListener.Adapter()
           
 
Method Summary
 void activeChanged(Window window, Window obverseWindow)
          Called when a window's active state has changed.
 void contentChanged(Window window, Component previousContent)
          Called when a window's content component has changed.
 void iconAdded(Window window, Image addedIcon)
          Called when a window's icon has changed.
 void iconInserted(Window window, Image addedIcon, int index)
          Called when a window's icon has changed.
 void iconsRemoved(Window window, int index, Sequence<Image> removed)
          Called when a window's icon has changed.
 void maximizedChanged(Window window)
          Called when a window's maximized state has changed.
 void titleChanged(Window window, String previousTitle)
          Called when a window's title has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WindowListener.Adapter

public WindowListener.Adapter()
Method Detail

titleChanged

public void titleChanged(Window window,
                         String previousTitle)
Description copied from interface: WindowListener
Called when a window's title has changed.

Specified by:
titleChanged in interface WindowListener

iconAdded

public void iconAdded(Window window,
                      Image addedIcon)
Description copied from interface: WindowListener
Called when a window's icon has changed.

Specified by:
iconAdded in interface WindowListener

iconInserted

public void iconInserted(Window window,
                         Image addedIcon,
                         int index)
Description copied from interface: WindowListener
Called when a window's icon has changed.

Specified by:
iconInserted in interface WindowListener

iconsRemoved

public void iconsRemoved(Window window,
                         int index,
                         Sequence<Image> removed)
Description copied from interface: WindowListener
Called when a window's icon has changed.

Specified by:
iconsRemoved in interface WindowListener

contentChanged

public void contentChanged(Window window,
                           Component previousContent)
Description copied from interface: WindowListener
Called when a window's content component has changed.

Specified by:
contentChanged in interface WindowListener

activeChanged

public void activeChanged(Window window,
                          Window obverseWindow)
Description copied from interface: WindowListener
Called when a window's active state has changed.

Specified by:
activeChanged in interface WindowListener

maximizedChanged

public void maximizedChanged(Window window)
Description copied from interface: WindowListener
Called when a window's maximized state has changed.

Specified by:
maximizedChanged in interface WindowListener