-
- All Superinterfaces:
- EventListener
- All Known Implementing Classes:
- BasicInternalFrameUI.BasicInternalFrameListener, InternalFrameAdapter
public interface InternalFrameListener extends EventListener
The listener interface for receiving internal frame events. This class is functionally equivalent to the WindowListener class in the AWT.See How to Write an Internal Frame Listener in The Java Tutorial for further documentation.
- See Also:
WindowListener
-
-
Method Summary
Methods Modifier and Type Method and 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 a internal frame has been opened.
-
-
-
Method Detail
-
internalFrameOpened
void internalFrameOpened(InternalFrameEvent e)
Invoked when a internal frame has been opened.- See Also:
JInternalFrame.show()
-
internalFrameClosing
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.
-
internalFrameClosed
void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.- See Also:
JInternalFrame.setClosed(boolean)
-
internalFrameIconified
void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.- See Also:
JInternalFrame.setIcon(boolean)
-
internalFrameDeiconified
void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.- See Also:
JInternalFrame.setIcon(boolean)
-
internalFrameActivated
void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.- See Also:
JInternalFrame.setSelected(boolean)
-
internalFrameDeactivated
void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.- See Also:
JInternalFrame.setSelected(boolean)
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-javax/swing/event/InternalFrameListener.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.