Package org.openstreetmap.josm.data
Interface UndoRedoHandler.CommandQueuePreciseListener
-
- All Known Implementing Classes:
CommandStackDialog
- Enclosing class:
- UndoRedoHandler
public static interface UndoRedoHandler.CommandQueuePreciseListener
A listener that gets notified of command queue (undo/redo) operations individually.- Since:
- 13729
- See Also:
UndoRedoHandler.CommandQueueListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cleaned(UndoRedoHandler.CommandQueueCleanedEvent e)
Notifies the listener about commands being cleaned.void
commandAdded(UndoRedoHandler.CommandAddedEvent e)
Notifies the listener about a new command added to the queue.void
commandRedone(UndoRedoHandler.CommandRedoneEvent e)
Notifies the listener about a command that has been redone.void
commandUndone(UndoRedoHandler.CommandUndoneEvent e)
Notifies the listener about a command that has been undone.
-
-
-
Method Detail
-
commandAdded
void commandAdded(UndoRedoHandler.CommandAddedEvent e)
Notifies the listener about a new command added to the queue.- Parameters:
e
- event
-
cleaned
void cleaned(UndoRedoHandler.CommandQueueCleanedEvent e)
Notifies the listener about commands being cleaned.- Parameters:
e
- event
-
commandUndone
void commandUndone(UndoRedoHandler.CommandUndoneEvent e)
Notifies the listener about a command that has been undone.- Parameters:
e
- event
-
commandRedone
void commandRedone(UndoRedoHandler.CommandRedoneEvent e)
Notifies the listener about a command that has been redone.- Parameters:
e
- event
-
-