Package dk.gtz.graphedit.util
Interface IObservableUndoSystem
- All Superinterfaces:
dk.yalibs.yaundo.IUndoSystem
- All Known Implementing Classes:
ObservableStackUndoSystem
,ObservableTreeUndoSystem
public interface IObservableUndoSystem
extends dk.yalibs.yaundo.IUndoSystem
Interface for an undo system where the
Undoable
entries are observable-
Method Summary
Modifier and TypeMethodDescriptionvoid
addListener
(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Add a listener for when the currentUndoable
changesjavafx.beans.value.ObservableValue<dk.yalibs.yaundo.Undoable>
Get the currentUndoable
observable valuedefault List<ObservableUndoable>
Get a list ofObservableUndoable
that represent the undo history, which contains a string representation for pretty printing.void
gotoAction
(dk.yalibs.yaundo.Undoable action) Go to a specificUndoable
action.void
removeListener
(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Remove a listener for when the currentUndoable
changesMethods inherited from interface dk.yalibs.yaundo.IUndoSystem
getCurrentAction, getHistory, push, redo, undo
-
Method Details
-
getCurrentUndoableProperty
javafx.beans.value.ObservableValue<dk.yalibs.yaundo.Undoable> getCurrentUndoableProperty()Get the currentUndoable
observable value- Returns:
- The current undoable
-
getStringRepresentation
Get a list ofObservableUndoable
that represent the undo history, which contains a string representation for pretty printing.- Returns:
- A list of
ObservableUndoable
-
addListener
void addListener(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Add a listener for when the currentUndoable
changes- Parameters:
listener
- The listener to add
-
removeListener
void removeListener(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Remove a listener for when the currentUndoable
changes- Parameters:
listener
- The listener to remove
-
gotoAction
void gotoAction(dk.yalibs.yaundo.Undoable action) Go to a specificUndoable
action. Note that this may trigger many change events.- Parameters:
action
- The action to go to
-