Class java.awt.event.WindowAdapter
All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.event.WindowAdapter
Object
|
+----java.awt.event.WindowAdapter
- public abstract class WindowAdapter
- extends Object
- implements WindowListener
The adapter which receives window events.
The methods in this class are empty; this class is provided as a
convenience for easily creating listeners by extending this class
and overriding only the methods of interest.
- Version:
- 1.8 07/01/98
- Author:
- Carl Quinn, Amy Fowler
-
java.awt.event.WindowAdapter()
-
-
windowActivated(WindowEvent)
-
-
windowClosed(WindowEvent)
-
-
windowClosing(WindowEvent)
-
-
windowDeactivated(WindowEvent)
-
-
windowDeiconified(WindowEvent)
-
-
windowIconified(WindowEvent)
-
-
windowOpened(WindowEvent)
-
WindowAdapter
public WindowAdapter()
windowActivated
public void windowActivated(WindowEvent e)
windowClosed
public void windowClosed(WindowEvent e)
windowClosing
public void windowClosing(WindowEvent e)
windowDeactivated
public void windowDeactivated(WindowEvent e)
windowDeiconified
public void windowDeiconified(WindowEvent e)
windowIconified
public void windowIconified(WindowEvent e)
windowOpened
public void windowOpened(WindowEvent e)
All Packages Class Hierarchy This Package Previous Next Index