/* * @(#)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); }