Package dk.gtz.graphedit.util
Class VetoChangeListener<T>
java.lang.Object
dk.gtz.graphedit.util.VetoChangeListener<T>
- Type Parameters:
T
- The type of the wrapped value
- All Implemented Interfaces:
javafx.beans.value.ChangeListener<T>
public abstract class VetoChangeListener<T>
extends Object
implements javafx.beans.value.ChangeListener<T>
Change listener that can veto a change if it was not a valid change.
-
Constructor Summary
ConstructorsConstructorDescriptionVetoChangeListener
(javafx.scene.control.SelectionModel<T> selectionModel) Construct a new instance -
Method Summary
Modifier and TypeMethodDescriptionvoid
protected abstract boolean
isInvalidChange
(T oldValue, T newValue) Checks if the change was a valid one or not.protected abstract void
Callback for when the change was valid and accepted.
-
Constructor Details
-
VetoChangeListener
Construct a new instance- Parameters:
selectionModel
- The selection to listen for changes in
-
-
Method Details
-
changed
public void changed(javafx.beans.value.ObservableValue<? extends T> observable, T oldValue, T newValue) - Specified by:
changed
in interfacejavafx.beans.value.ChangeListener<T>
-
isInvalidChange
Checks if the change was a valid one or not. If the change is invalid, the selection will be reverted- Parameters:
oldValue
- The old valuenewValue
- The new value- Returns:
- true if the change was considered valid, false otherwise
-
onChanged
Callback for when the change was valid and accepted.- Parameters:
oldValue
- The old valuenewValue
- The new value
-