WindowAdapterNameWindowAdapter
DescriptionThe WindowAdapter class implements the methods of WindowListener with empty functions. It may be easier for you to extend WindowAdapter, overriding only those methods you are interested in, than to implement WindowListener and provide the empty functions yourself. Class Definition
public abstract class java.awt.event.WindowAdapter extends java.lang.Object implements java.awt.event.WindowListener { // Instance Methods public void windowActivated (WindowEvent e); public void windowClosed (WindowEvent e); public void windowClosing (WindowEvent e); public void windowDeactivated (WindowEvent e); public void windowDeiconified (WindowEvent e); public void windowIconified (WindowEvent e); public void windowOpened (WindowEvent e); } Instance MethodswindowActivatedpublic void windowActivated (WindowEvent e)
windowClosedpublic void windowClosed (WindowEvent e)
windowClosingpublic void windowClosing (WindowEvent e)
windowDeactivatedpublic void windowDeactivated (WindowEvent e)
windowDeiconifiedpublic void windowDeiconified (WindowEvent e)
windowIconifiedpublic void windowIconified (WindowEvent e)
windowOpenedpublic void windowOpened (WindowEvent e)
See AlsoWindowEvent, WindowListener |
|