Package ca.odell.glazedlists
Interface UndoRedoSupport.Listener
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- UndoRedoSupport<E>
public static interface UndoRedoSupport.Listener extends java.util.EventListener
Implementations of this Listener interface should be registered with an UndoRedoSupport object viaUndoRedoSupport.addUndoSupportListener(ca.odell.glazedlists.UndoRedoSupport.Listener)
. They will be notified of each undoable edit that occurs to the given EventList.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
undoableEditHappened(UndoRedoSupport.Edit edit)
Notified of each undoable edit applied to the given EventList.
-
-
-
Method Detail
-
undoableEditHappened
void undoableEditHappened(UndoRedoSupport.Edit edit)
Notified of each undoable edit applied to the given EventList.
-
-