Class JMenu.WinListener
java.lang.Object
java.awt.event.WindowAdapter
javax.swing.JMenu.WinListener
- All Implemented Interfaces:
WindowFocusListener, WindowListener, WindowStateListener, Serializable, EventListener
- Enclosing class:
JMenu
A listener class that watches for a popup window closing.
When the popup is closing, the listener deselects the menu.
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is
appropriate for short term storage or RMI between applications running
the same version of Swing. As of 1.4, support for long term storage
of all JavaBeans
has been added to the java.beans package.
Please see XMLEncoder.
- Since:
- 1.2
-
Constructor Summary
ConstructorsConstructorDescriptionCreate the window listener for the specified popup. -
Method Summary
Modifier and TypeMethodDescriptionvoidDeselect the menu when the popup is closed from outside.Methods declared in class WindowAdapter
windowActivated, windowClosed, windowDeactivated, windowDeiconified, windowGainedFocus, windowIconified, windowLostFocus, windowOpened, windowStateChangedModifier and TypeMethodDescriptionvoidInvoked when a window is activated.voidInvoked when a window has been closed.voidInvoked when a window is de-activated.voidInvoked when a window is de-iconified.voidInvoked when the Window is set to be the focused Window, which means that the Window, or one of its subcomponents, will receive keyboard events.voidInvoked when a window is iconified.voidInvoked 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.voidInvoked when a window has been opened.voidInvoked when a window state is changed.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
WinListener
Create the window listener for the specified popup.- Parameters:
p- the popup menu for which to create a listener- Since:
- 1.4
-
-
Method Details
-
windowClosing
Deselect the menu when the popup is closed from outside.- Specified by:
windowClosingin interfaceWindowListener- Overrides:
windowClosingin classWindowAdapter- Parameters:
e- the event to be processed
-