- 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
 
- 
- 
Constructor SummaryConstructors Constructor Description InternalFrameAdapter()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinternalFrameActivated(InternalFrameEvent e)Invoked when an internal frame is activated.voidinternalFrameClosed(InternalFrameEvent e)Invoked when an internal frame has been closed.voidinternalFrameClosing(InternalFrameEvent e)Invoked when an internal frame is in the process of being closed.voidinternalFrameDeactivated(InternalFrameEvent e)Invoked when an internal frame is de-activated.voidinternalFrameDeiconified(InternalFrameEvent e)Invoked when an internal frame is de-iconified.voidinternalFrameIconified(InternalFrameEvent e)Invoked when an internal frame is iconified.voidinternalFrameOpened(InternalFrameEvent e)Invoked when an internal frame has been opened.
 
- 
- 
- 
Method Detail- 
internalFrameOpenedpublic void internalFrameOpened(InternalFrameEvent e) Invoked 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:
- JInternalFrame.show()
 
 - 
internalFrameClosingpublic 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 interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
- JInternalFrame.setDefaultCloseOperation(int)
 
 - 
internalFrameClosedpublic void internalFrameClosed(InternalFrameEvent e) Invoked 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:
- JInternalFrame.setClosed(boolean)
 
 - 
internalFrameIconifiedpublic void internalFrameIconified(InternalFrameEvent e) Invoked when an internal frame is iconified.- Specified by:
- internalFrameIconifiedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
- JInternalFrame.setIcon(boolean)
 
 - 
internalFrameDeiconifiedpublic void internalFrameDeiconified(InternalFrameEvent e) Invoked 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:
- JInternalFrame.setIcon(boolean)
 
 - 
internalFrameActivatedpublic void internalFrameActivated(InternalFrameEvent e) Invoked when an internal frame is activated.- Specified by:
- internalFrameActivatedin interface- InternalFrameListener
- Parameters:
- e- an- InternalFrameEventwith information about the- JInteralFramethat originated the event
- See Also:
- JInternalFrame.setSelected(boolean)
 
 - 
internalFrameDeactivatedpublic void internalFrameDeactivated(InternalFrameEvent e) Invoked 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:
- JInternalFrame.setSelected(boolean)
 
 
- 
 
-