/* * @(#)InternalFrameAdapter.java 1.12 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.swing.event; /** * 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 and * The Java Class Libraries (update) * * @see InternalFrameEvent * @see InternalFrameListener * @see java.awt.event.WindowListener * * @version 1.12 12/19/03 * @author Thomas Ball */ public abstract class InternalFrameAdapter implements InternalFrameListener { /** * Invoked when an internal frame has been opened. */ public void internalFrameOpened(InternalFrameEvent e) {} /** * Invoked when an internal frame is in the process of being closed. * The close operation can be overridden at this point. */ public void internalFrameClosing(InternalFrameEvent e) {} /** * Invoked when an internal frame has been closed. */ public void internalFrameClosed(InternalFrameEvent e) {} /** * Invoked when an internal frame is iconified. */ public void internalFrameIconified(InternalFrameEvent e) {} /** * Invoked when an internal frame is de-iconified. */ public void internalFrameDeiconified(InternalFrameEvent e) {} /** * Invoked when an internal frame is activated. */ public void internalFrameActivated(InternalFrameEvent e) {} /** * Invoked when an internal frame is de-activated. */ public void internalFrameDeactivated(InternalFrameEvent e) {} }