java.awt.event
public abstract class WindowAdapter extends Object implements WindowListener, WindowStateListener, WindowFocusListener
WindowListener
,
WindowStateListener
, and WindowFocusListener
, and
implements all methods with empty bodies. This allows a listener
interested in listening to only a subset of any WindowEvent
actions to extend this class and override only the desired methods.
Since: 1.1
See Also: ComponentEvent ComponentListener
UNKNOWN: updated to 1.4
Constructor Summary | |
---|---|
WindowAdapter()
Do nothing default constructor for subclasses. |
Method Summary | |
---|---|
void | windowActivated(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowClosed(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowClosing(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowDeactivated(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowDeiconified(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowGainedFocus(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowIconified(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowLostFocus(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowOpened(WindowEvent event)
Implements this method from the interface with an empty method body.
|
void | windowStateChanged(WindowEvent event)
Implements this method from the interface with an empty method body.
|
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Since: 1.4
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Since: 1.4
Parameters: event the event, ignored in this implementation
Parameters: event the event, ignored in this implementation
Since: 1.4