Package dk.gtz.graphedit.util
Class ObservableStackUndoSystem
java.lang.Object
dk.gtz.graphedit.util.ObservableStackUndoSystem
- All Implemented Interfaces:
IObservableUndoSystem
,dk.yalibs.yaundo.IUndoSystem
Implementation of an observable undosystem
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addListener
(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Add a listener for when the currentUndoable
changesOptional<dk.yalibs.yaundo.Undoable>
javafx.beans.value.ObservableValue<dk.yalibs.yaundo.Undoable>
Get the currentUndoable
observable valueIterable<dk.yalibs.yaundo.Undoable>
void
gotoAction
(dk.yalibs.yaundo.Undoable action) Go to a specificUndoable
action.void
push
(dk.yalibs.yaundo.Undoable action) void
redo()
void
removeListener
(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Remove a listener for when the currentUndoable
changesvoid
undo()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface dk.gtz.graphedit.util.IObservableUndoSystem
getStringRepresentation
-
Constructor Details
-
ObservableStackUndoSystem
public ObservableStackUndoSystem()Construct a new instance
-
-
Method Details
-
getHistory
- Specified by:
getHistory
in interfacedk.yalibs.yaundo.IUndoSystem
-
push
public void push(dk.yalibs.yaundo.Undoable action) - Specified by:
push
in interfacedk.yalibs.yaundo.IUndoSystem
-
undo
public void undo()- Specified by:
undo
in interfacedk.yalibs.yaundo.IUndoSystem
-
redo
public void redo()- Specified by:
redo
in interfacedk.yalibs.yaundo.IUndoSystem
-
getCurrentUndoableProperty
public javafx.beans.value.ObservableValue<dk.yalibs.yaundo.Undoable> getCurrentUndoableProperty()Description copied from interface:IObservableUndoSystem
Get the currentUndoable
observable value- Specified by:
getCurrentUndoableProperty
in interfaceIObservableUndoSystem
- Returns:
- The current undoable
-
getCurrentAction
- Specified by:
getCurrentAction
in interfacedk.yalibs.yaundo.IUndoSystem
-
addListener
public void addListener(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Description copied from interface:IObservableUndoSystem
Add a listener for when the currentUndoable
changes- Specified by:
addListener
in interfaceIObservableUndoSystem
- Parameters:
listener
- The listener to add
-
removeListener
public void removeListener(javafx.beans.value.ChangeListener<dk.yalibs.yaundo.Undoable> listener) Description copied from interface:IObservableUndoSystem
Remove a listener for when the currentUndoable
changes- Specified by:
removeListener
in interfaceIObservableUndoSystem
- Parameters:
listener
- The listener to remove
-
gotoAction
public void gotoAction(dk.yalibs.yaundo.Undoable action) Description copied from interface:IObservableUndoSystem
Go to a specificUndoable
action. Note that this may trigger many change events.- Specified by:
gotoAction
in interfaceIObservableUndoSystem
- Parameters:
action
- The action to go to
-