Uses of Interface
java.awt.event.WindowListener

Packages that use WindowListener
java.awt   
java.awt.event   
 

Uses of WindowListener in java.awt
 

Classes in java.awt that implement WindowListener
 class AWTEventMulticaster
          A class which implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in the java.awt.event package.
private static class Toolkit.ToolkitEventMulticaster
           
 

Fields in java.awt declared as WindowListener
(package private)  WindowListener Window.windowListener
           
 

Methods in java.awt that return WindowListener
static WindowListener AWTEventMulticaster.add(WindowListener a, WindowListener b)
          Adds window-listener-a with window-listener-b and returns the resulting multicast listener.
static WindowListener AWTEventMulticaster.remove(WindowListener l, WindowListener oldl)
          Removes the old window-listener from window-listener-l and returns the resulting multicast listener.
 

Methods in java.awt with parameters of type WindowListener
static WindowListener AWTEventMulticaster.add(WindowListener a, WindowListener b)
          Adds window-listener-a with window-listener-b and returns the resulting multicast listener.
static WindowListener AWTEventMulticaster.remove(WindowListener l, WindowListener oldl)
          Removes the old window-listener from window-listener-l and returns the resulting multicast listener.
 void Window.addWindowListener(WindowListener l)
          Adds the specified window listener to receive window events from this window.
 void Window.removeWindowListener(WindowListener l)
          Removes the specified window listener so that it no longer receives window events from this window.
 

Uses of WindowListener in java.awt.event
 

Classes in java.awt.event that implement WindowListener
 class WindowAdapter
          An abstract adapter class for receiving window events.