1 /*2 * @(#)UndoableEditListener.java 1.16 03/12/193 *4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package javax.swing.event;9 10 import javax.swing.undo.*;11 12 /**13 * Interface implemented by a class interested in hearing about14 * undoable operations.15 *16 * @version 1.16 12/19/0317 * @author Ray Ryan18 */19 20 public interface UndoableEditListener extends java.util.EventListener {21 22 /**23 * An undoable edit happened24 */25 void undoableEditHappened(UndoableEditEvent e);26 }27