| java.lang.Object java.awt.event.WindowAdapter
WindowAdapter | abstract public class WindowAdapter implements WindowListener,WindowFocusListener(Code) | | The adapter which receives window events.
The methods in this class are empty; this class is provided as a
convenience for easily creating listeners by extending this class
and overriding only the methods of interest.
version: 1.12 08/19/02 author: Carl Quinn author: Amy Fowler |
windowGainedFocus | public void windowGainedFocus(WindowEvent e)(Code) | | 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.
since: 1.4 |
windowLostFocus | public void windowLostFocus(WindowEvent e)(Code) | | 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.
since: 1.4 |
|
|