Top Description Constructors Methods
javax.swing.event

public abstract Class InternalFrameAdapter

extends Object
implements InternalFrameListener
Class Inheritance
All Implemented Interfaces
javax.swing.event.InternalFrameListener, java.util.EventListener

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

Author
Thomas Ball
See Also
InternalFrameEvent, InternalFrameListener, java.awt.event.WindowListener

Constructor Summary

AccessConstructor and Description
protected
InternalFrameAdapter()

Constructor for subclasses to call.

Method Summary

Modifier and TypeMethod and Description
public void
internalFrameActivated(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameActivated.

Invoked when an internal frame is activated.
public void
internalFrameClosed(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameClosed.

Invoked when an internal frame has been closed.
public void
internalFrameClosing(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameClosing.

Invoked when an internal frame is in the process of being closed.
public void
internalFrameDeactivated(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameDeactivated.

Invoked when an internal frame is de-activated.
public void
internalFrameDeiconified(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameDeiconified.

Invoked when an internal frame is de-iconified.
public void
internalFrameIconified(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameIconified.

Invoked when an internal frame is iconified.
public void
internalFrameOpened(InternalFrameEvent
an InternalFrameEvent with information about the JInternalFrame that originated the event
e
)

Implements javax.swing.event.InternalFrameListener.internalFrameOpened.

Invoked when an internal frame has been opened.
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

InternalFrameAdapterback to summary
protected InternalFrameAdapter()

Constructor for subclasses to call.

Method Detail

internalFrameActivatedback to summary
public void internalFrameActivated(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameActivated.

Invoked when an internal frame is activated.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameActivated.

an InternalFrameEvent with information about the JInternalFrame that originated the event

internalFrameClosedback to summary
public void internalFrameClosed(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameClosed.

Invoked when an internal frame has been closed.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameClosed.

an InternalFrameEvent with information about the JInternalFrame that originated the event

internalFrameClosingback to summary
public void internalFrameClosing(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameClosing.

Invoked when an internal frame is in the process of being closed. The close operation can be overridden at this point.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameClosing.

an InternalFrameEvent with information about the JInternalFrame that originated the event

internalFrameDeactivatedback to summary
public void internalFrameDeactivated(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameDeactivated.

Invoked when an internal frame is de-activated.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameDeactivated.

an InternalFrameEvent with information about the JInternalFrame that originated the event

internalFrameDeiconifiedback to summary
public void internalFrameDeiconified(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameDeiconified.

Invoked when an internal frame is de-iconified.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameDeiconified.

an InternalFrameEvent with information about the JInternalFrame that originated the event

internalFrameIconifiedback to summary
public void internalFrameIconified(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameIconified.

Invoked when an internal frame is iconified.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameIconified.

an InternalFrameEvent with information about the JInternalFrame that originated the event

internalFrameOpenedback to summary
public void internalFrameOpened(InternalFrameEvent e)

Implements javax.swing.event.InternalFrameListener.internalFrameOpened.

Invoked when an internal frame has been opened.

Parameters
e:InternalFrameEvent

Doc from javax.swing.event.InternalFrameListener.internalFrameOpened.

an InternalFrameEvent with information about the JInternalFrame that originated the event