java.awt.event.WindowAdapter (JDK 1.1)
This class is a trivial implementation of WindowListener; it provides empty bodies for each of the methods of that interface. When you are not interested in all of these methods, it is often easier to subclass WindowAdapter than it is to implement WindowListener from scratch.
public abstract classWindowAdapterextends Object implements WindowListener { //Default Constructor: public WindowAdapter()//Public Instance Methodspublic voidwindowActivated(WindowEvente); //From WindowListenerpublic voidwindowClosed(WindowEvente); //From WindowListenerpublic voidwindowClosing(WindowEvente); //From WindowListenerpublic voidwindowDeactivated(WindowEvente); //From WindowListenerpublic voidwindowDeiconified(WindowEvente); //From WindowListenerpublic voidwindowIconified(WindowEvente); //From WindowListenerpublic voidwindowOpened(WindowEvente); //From WindowListener}
Hierarchy:
Object->WindowAdapter(WindowListener(EventListener))