- 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 SummaryModifier and TypeMethodDescriptionvoidInvoked when an internal frame is activated.voidInvoked when an internal frame has been closed.voidInvoked when an internal frame is in the process of being closed.voidInvoked when an internal frame is de-activated.voidInvoked when an internal frame is de-iconified.voidInvoked when an internal frame is iconified.voidInvoked when a internal frame has been opened.
- 
Method Details- 
internalFrameOpenedInvoked when a internal frame has been opened.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameClosingInvoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameClosedInvoked when an internal frame has been closed.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameIconifiedInvoked when an internal frame is iconified.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameDeiconifiedInvoked when an internal frame is de-iconified.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameActivatedInvoked when an internal frame is activated.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameDeactivatedInvoked when an internal frame is de-activated.- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
 
-