Class PropertyChange
- java.lang.Object
-
- com.github.javaparser.printer.lexicalpreservation.changes.PropertyChange
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Object
newValue
private java.lang.Object
oldValue
private ObservableProperty
property
-
Constructor Summary
Constructors Constructor Description PropertyChange(ObservableProperty property, java.lang.Object oldValue, java.lang.Object newValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getNewValue()
java.lang.Object
getOldValue()
ObservableProperty
getProperty()
java.lang.Object
getValue(ObservableProperty property, Node node)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.javaparser.printer.lexicalpreservation.changes.Change
evaluate, isEvaluatedOnDerivedProperty
-
-
-
-
Field Detail
-
property
private final ObservableProperty property
-
oldValue
private final java.lang.Object oldValue
-
newValue
private final java.lang.Object newValue
-
-
Constructor Detail
-
PropertyChange
public PropertyChange(ObservableProperty property, java.lang.Object oldValue, java.lang.Object newValue)
-
-
Method Detail
-
getProperty
public ObservableProperty getProperty()
- Specified by:
getProperty
in interfaceChange
-
getOldValue
public java.lang.Object getOldValue()
-
getNewValue
public java.lang.Object getNewValue()
-
getValue
public java.lang.Object getValue(ObservableProperty property, Node node)
-
-