KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > swing > event > UndoableEditListener


1 /*
2  * @(#)UndoableEditListener.java 1.16 03/12/19
3  *
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 about
14  * undoable operations.
15  *
16  * @version 1.16 12/19/03
17  * @author Ray Ryan
18  */

19
20 public interface UndoableEditListener extends java.util.EventListener JavaDoc {
21
22     /**
23      * An undoable edit happened
24      */

25     void undoableEditHappened(UndoableEditEvent JavaDoc e);
26 }
27
Popular Tags