1. /*
  2. * @(#)UndoableEditListener.java 1.12 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.event;
  8. import javax.swing.undo.*;
  9. /**
  10. * Interface implemented by a class interested in hearing about
  11. * undoable operations.
  12. *
  13. * @version 1.12 11/29/01
  14. * @author Ray Ryan
  15. */
  16. public interface UndoableEditListener extends java.util.EventListener {
  17. /**
  18. * An undoable edit happened
  19. */
  20. void undoableEditHappened(UndoableEditEvent e);
  21. }