JSR-209 (Final Release)

javax.swing.event
Interface InternalFrameListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
InternalFrameAdapter

public interface InternalFrameListener
extends java.util.EventListener

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 and The Java Class Libraries (update) for further documentation.

See Also:
WindowListener

Method Summary
 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 a internal frame has been opened.
 

Method Detail

internalFrameOpened

public void internalFrameOpened(InternalFrameEvent e)
Invoked when a internal frame has been opened.

See Also:
JInternalFrame.show()

internalFrameClosing

public 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.

See Also:
JInternalFrame.setDefaultCloseOperation(int)

internalFrameClosed

public void internalFrameClosed(InternalFrameEvent e)
Invoked when an internal frame has been closed.

See Also:
JInternalFrame.setClosed(boolean)

internalFrameIconified

public void internalFrameIconified(InternalFrameEvent e)
Invoked when an internal frame is iconified.

See Also:
JInternalFrame.setIcon(boolean)

internalFrameDeiconified

public void internalFrameDeiconified(InternalFrameEvent e)
Invoked when an internal frame is de-iconified.

See Also:
JInternalFrame.setIcon(boolean)

internalFrameActivated

public void internalFrameActivated(InternalFrameEvent e)
Invoked when an internal frame is activated.

See Also:
JInternalFrame.setSelected(boolean)

internalFrameDeactivated

public void internalFrameDeactivated(InternalFrameEvent e)
Invoked when an internal frame is de-activated.

See Also:
JInternalFrame.setSelected(boolean)

JSR-209 (Final Release)

Java and Java 2D are trademarks or registered trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
Copyright 1993 - 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All Rights Reserved.
Use of this specification is subject to this license.