Interface UndoRedoEditListener

All Superinterfaces:
EventListener

public interface UndoRedoEditListener extends EventListener

The listener interface for receiving events from undo or redo operations on a text edition.

The listener object created from that class is then registered with a component using the component's addUndoRedoEditListener method. An event of this kind of operations is generated when an EditableTextDecorator executes an undo or redo operation. The relevant method in the listener object is then invoked, and the UndoRedoEditEvent is passed to it.

Version:
12/02/2008
Author:
Pablo Piqueras Bartolomé (pablo.piqueras@iver.es)
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Invoked when an undo or redo operation has been executed.
  • Method Details

    • operationExecuted

      void operationExecuted(UndoRedoEditEvent e)
      Invoked when an undo or redo operation has been executed. See the class description for UndoRedoEditEvent for a notification of an undo or redo operation executed on an editable text component.