FileDocCategorySizeDatePackage
UndoableEditListener.javaAPI DocJava SE 5 API564Fri Aug 26 14:58:02 BST 2005javax.swing.event

UndoableEditListener.java

/*
 * @(#)UndoableEditListener.java	1.16 03/12/19
 *
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package javax.swing.event;

import javax.swing.undo.*;

/**
 * Interface implemented by a class interested in hearing about
 * undoable operations.
 *
 * @version 1.16 12/19/03
 * @author Ray Ryan
 */

public interface UndoableEditListener extends java.util.EventListener {

    /**
     * An undoable edit happened
     */
    void undoableEditHappened(UndoableEditEvent e);
}