Interface UndoRedoEditListener
- All Superinterfaces:
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 TypeMethodDescriptionvoidInvoked when an undo or redo operation has been executed.
-
Method Details
-
operationExecuted
Invoked when an undo or redo operation has been executed. See the class description forUndoRedoEditEventfor a notification of an undo or redo operation executed on an editable text component.
-