EventListener
BasicInternalFrameUI.BasicInternalFrameListener
, InternalFrameAdapter
public interface InternalFrameListener extends EventListener
See How to Write an Internal Frame Listener in The Java Tutorial for further documentation.
Modifier and Type | Method | Description |
---|---|---|
void |
internalFrameActivated |
Invoked when an internal frame is activated. |
void |
internalFrameClosed |
Invoked when an internal frame has been closed. |
void |
internalFrameClosing |
Invoked when an internal frame is in the process of being closed. |
void |
internalFrameDeactivated |
Invoked when an internal frame is de-activated. |
void |
internalFrameDeiconified |
Invoked when an internal frame is de-iconified. |
void |
internalFrameIconified |
Invoked when an internal frame is iconified. |
void |
internalFrameOpened |
Invoked when a internal frame has been opened. |
void internalFrameOpened(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventvoid internalFrameClosing(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventvoid internalFrameClosed(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventvoid internalFrameIconified(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventvoid internalFrameDeiconified(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventvoid internalFrameActivated(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventvoid internalFrameDeactivated(InternalFrameEvent e)
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the event
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/event/InternalFrameListener.html