WindowListenerNameWindowListener
DescriptionObjects that implement the WindowListener interface can receive WindowEvent objects. Listeners must first register themselves with objects that produce events. When events occur, they are then automatically propagated to all registered listeners. Interface Definition
public abstract interface java.awt.event.WindowListener extends java.util.EventListener { // Instance Methods public abstract void windowActivated (WindowEvent e); public abstract void windowClosed (WindowEvent e); public abstract void windowClosing (WindowEvent e); public abstract void windowDeactivated (WindowEvent e); public abstract void windowDeiconified (WindowEvent e); public abstract void windowIconified (WindowEvent e); public abstract void windowOpened (WindowEvent e); } Interface MethodswindowActivatedpublic abstract void windowActivated (WindowEvent e)
windowClosedpublic abstract void windowClosed (WindowEvent e)
windowClosingpublic abstract void windowClosing (WindowEvent e)
windowDeactivatedpublic abstract void windowDeactivated (WindowEvent e)
windowDeiconifiedpublic abstract void windowDeiconified (WindowEvent e)
windowIconifiedpublic abstract void windowIconified (WindowEvent e)
windowOpenedpublic abstract void windowOpened (WindowEvent e)
See AlsoAWTEventMulticaster, EventListener, Window, WindowAdapter, WindowEvent |
|