/** Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
**/
packagejava.awt.event;/*** An abstract adapter class for receiving window events.
* The methods in this class are empty. This class exists as
* convenience for creating listener objects.
*
* Extend this class to create a WindowEvent
listener
* and override the methods for the events of interest. (If you implement the
* WindowListener
interface, you have to define all of
* the methods in it. This abstract class defines null methods for them
* all, so you can only have to define methods for events you care about.)
*
* Create a listener object using the extended class and then register it with
* a Window using the window's addWindowListener
* method. When the window's status changes by virtue of being opened,
* closed, activated or deactivated, iconified or deiconified,
* the relevant method in the listener
* object is invoked, and the WindowEvent
is passed to it.
*
*@seeWindowEvent
*@seeWindowListener
*@seeTutorial: Writing a Window Listener
*
*@authorCarl Quinn
*@authorAmy Fowler
*@authorDavid Mendenhall
*@since1.1*/
public abstract classWindowAdapterimplementsWindowListener, WindowStateListener, WindowFocusListener
{/*** Invoked when a window has been opened.*/
public voidwindowOpened(WindowEvent e) {}/*** Invoked when a window is in the process of being closed.
* The close operation can be overridden at this point.*/
public voidwindowClosing(WindowEvent e) {}/*** Invoked when a window has been closed.*/
public voidwindowClosed(WindowEvent e) {}/*** Invoked when a window is iconified.*/
public voidwindowIconified(WindowEvent e) {}/*** Invoked when a window is de-iconified.*/
public voidwindowDeiconified(WindowEvent e) {}/*** Invoked when a window is activated.*/
public voidwindowActivated(WindowEvent e) {}/*** Invoked when a window is de-activated.*/
public voidwindowDeactivated(WindowEvent e) {}/*** Invoked when a window state is changed.
*@since1.4*/
public voidwindowStateChanged(WindowEvent e) {}/*** Invoked when the Window is set to be the focused Window, which means
* that the Window, or one of its subcomponents, will receive keyboard
* events.
*
*@since1.4*/
public voidwindowGainedFocus(WindowEvent e) {}/*** Invoked when the Window is no longer the focused Window, which means
* that keyboard events will no longer be delivered to the Window or any of
* its subcomponents.
*
*@since1.4*/
public voidwindowLostFocus(WindowEvent e) {}
}