Class InternalFrameAdapter
- java.lang.Object
-
- javax.swing.event.InternalFrameAdapter
- All Implemented Interfaces:
-
EventListener,InternalFrameListener
public abstract class InternalFrameAdapter extends Object implements InternalFrameListener
An abstract adapter class for receiving internal frame events. The methods in this class are empty. This class exists as convenience for creating listener objects, and is functionally equivalent to the WindowAdapter class in the AWT.
See How to Write an Internal Frame Listener in The Java Tutorial
- See Also:
-
InternalFrameEvent,InternalFrameListener,WindowListener
Constructors
| Constructor | Description |
|---|---|
InternalFrameAdapter() |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
void | internalFrameActivated(InternalFrameEvent e) | Invoked when an internal frame is activated. |
void | internalFrameClosed(InternalFrameEvent e) | Invoked when an internal frame has been closed. |
void | internalFrameClosing(InternalFrameEvent e) | Invoked when an internal frame is in the process of being closed. |
void | internalFrameDeactivated(InternalFrameEvent e) | Invoked when an internal frame is de-activated. |
void | internalFrameDeiconified(InternalFrameEvent e) | Invoked when an internal frame is de-iconified. |
void | internalFrameIconified(InternalFrameEvent e) | Invoked when an internal frame is iconified. |
void | internalFrameOpened(InternalFrameEvent e) | Invoked when an internal frame has been opened. |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Constructors
InternalFrameAdapter
public InternalFrameAdapter()
Methods
internalFrameOpened
public void internalFrameOpened(InternalFrameEvent e)
Invoked when an internal frame has been opened.
- Specified by:
-
internalFrameOpenedin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.show()
internalFrameClosing
public void internalFrameClosing(InternalFrameEvent e)
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.
- Specified by:
-
internalFrameClosingin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.setDefaultCloseOperation(int)
internalFrameClosed
public void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.
- Specified by:
-
internalFrameClosedin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.setClosed(boolean)
internalFrameIconified
public void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.
- Specified by:
-
internalFrameIconifiedin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.setIcon(boolean)
internalFrameDeiconified
public void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.
- Specified by:
-
internalFrameDeiconifiedin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.setIcon(boolean)
internalFrameActivated
public void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.
- Specified by:
-
internalFrameActivatedin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.setSelected(boolean)
internalFrameDeactivated
public void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.
- Specified by:
-
internalFrameDeactivatedin interfaceInternalFrameListener - Parameters:
-
e- anInternalFrameEventwith information about theJInteralFramethat originated the event - See Also:
JInternalFrame.setSelected(boolean)
© 1993, 2020, 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/11/docs/api/java.desktop/javax/swing/event/InternalFrameAdapter.html