EventListener
, InternalFrameListener
public abstract class InternalFrameAdapter extends Object implements InternalFrameListener
See How to Write an Internal Frame Listener in The Java Tutorial
Modifier | Constructor | Description |
---|---|---|
protected |
Constructor for subclasses to call. |
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 an internal frame has been opened. |
protected InternalFrameAdapter()
public void internalFrameOpened(InternalFrameEvent e)
internalFrameOpened
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventpublic void internalFrameClosing(InternalFrameEvent e)
internalFrameClosing
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventpublic void internalFrameClosed(InternalFrameEvent e)
internalFrameClosed
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventpublic void internalFrameIconified(InternalFrameEvent e)
internalFrameIconified
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventpublic void internalFrameDeiconified(InternalFrameEvent e)
internalFrameDeiconified
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventpublic void internalFrameActivated(InternalFrameEvent e)
internalFrameActivated
in interface InternalFrameListener
e
- an InternalFrameEvent
with information about the JInteralFrame
that originated the eventpublic void internalFrameDeactivated(InternalFrameEvent e)
internalFrameDeactivated
in interface InternalFrameListener
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/InternalFrameAdapter.html