java.lang.Object
javax.swing.event.InternalFrameAdapter
- All Implemented Interfaces:
- EventListener,- 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:
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedConstructor for subclasses to call.
- 
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 an internal frame has been opened.
- 
Constructor Details- 
InternalFrameAdapterprotected InternalFrameAdapter()Constructor for subclasses to call.
 
- 
- 
Method Details- 
internalFrameOpenedInvoked when an internal frame has been opened.- Specified by:
- internalFrameOpenedin interface- InternalFrameListener
- 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.- Specified by:
- internalFrameClosingin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameClosedInvoked when an internal frame has been closed.- Specified by:
- internalFrameClosedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameIconifiedInvoked when an internal frame is iconified.- Specified by:
- internalFrameIconifiedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameDeiconifiedInvoked when an internal frame is de-iconified.- Specified by:
- internalFrameDeiconifiedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameActivatedInvoked when an internal frame is activated.- Specified by:
- internalFrameActivatedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
- 
internalFrameDeactivatedInvoked when an internal frame is de-activated.- Specified by:
- internalFrameDeactivatedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
 
 
-