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 Summary
Constructors Constructor Description InternalFrameAdapter()
-
Method Summary
Modifier and Type Method 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 an internal frame has been opened.
-
Constructor Details
-
InternalFrameAdapter
public InternalFrameAdapter()
-
-
Method Details
-
internalFrameOpened
Invoked when an internal frame has been opened.- Specified by:
internalFrameOpened
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.show()
-
internalFrameClosing
Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.- Specified by:
internalFrameClosing
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.setDefaultCloseOperation(int)
-
internalFrameClosed
Invoked when an internal frame has been closed.- Specified by:
internalFrameClosed
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.setClosed(boolean)
-
internalFrameIconified
Invoked when an internal frame is iconified.- Specified by:
internalFrameIconified
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.setIcon(boolean)
-
internalFrameDeiconified
Invoked when an internal frame is de-iconified.- Specified by:
internalFrameDeiconified
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.setIcon(boolean)
-
internalFrameActivated
Invoked when an internal frame is activated.- Specified by:
internalFrameActivated
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.setSelected(boolean)
-
internalFrameDeactivated
Invoked when an internal frame is de-activated.- Specified by:
internalFrameDeactivated
in interfaceInternalFrameListener
- Parameters:
e
- anInternalFrameEvent
with information about theJInteralFrame
that originated the event- See Also:
JInternalFrame.setSelected(boolean)
-