1. /*
  2. * @(#)UndoableEditListener.java 1.13 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing.event;
  11. import javax.swing.undo.*;
  12. /**
  13. * Interface implemented by a class interested in hearing about
  14. * undoable operations.
  15. *
  16. * @version 1.13 02/02/00
  17. * @author Ray Ryan
  18. */
  19. public interface UndoableEditListener extends java.util.EventListener {
  20. /**
  21. * An undoable edit happened
  22. */
  23. void undoableEditHappened(UndoableEditEvent e);
  24. }