- All Superinterfaces:
EventListener
- All Known Implementing Classes:
BasicInternalFrameUI.BasicInternalFrameListener
,InternalFrameAdapter
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:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked when an internal frame is activated.void
Invoked when an internal frame has been closed.void
Invoked when an internal frame is in the process of being closed.void
Invoked when an internal frame is de-activated.void
Invoked when an internal frame is de-iconified.void
Invoked when an internal frame is iconified.void
Invoked when a internal frame has been opened.
-
Method Details
-
internalFrameOpened
Invoked when a internal frame has been opened.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-
internalFrameClosing
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-
internalFrameClosed
Invoked when an internal frame has been closed.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-
internalFrameIconified
Invoked when an internal frame is iconified.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-
internalFrameDeiconified
Invoked when an internal frame is de-iconified.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-
internalFrameActivated
Invoked when an internal frame is activated.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-
internalFrameDeactivated
Invoked when an internal frame is de-activated.- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
-