Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.awt.event.WindowAdapter

java.lang.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.


Constructor Index

WindowAdapter()

Method Index

windowActivated(WindowEvent)
windowClosed(WindowEvent)
windowClosing(WindowEvent)
windowDeactivated(WindowEvent)
windowDeiconified(WindowEvent)
windowIconified(WindowEvent)
windowOpened(WindowEvent)

Constructors

WindowAdapter
 public WindowAdapter()

Methods

windowOpened
 public void windowOpened(WindowEvent e)
windowClosing
 public void windowClosing(WindowEvent e)
windowClosed
 public void windowClosed(WindowEvent e)
windowIconified
 public void windowIconified(WindowEvent e)
windowDeiconified
 public void windowDeiconified(WindowEvent e)
windowActivated
 public void windowActivated(WindowEvent e)
windowDeactivated
 public void windowDeactivated(WindowEvent e)

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)