Class TLspPropertyChangeDescriptor<T>
java.lang.Object
com.luciad.view.lightspeed.editor.operation.TLspPropertyChangeDescriptor<T>
Encapsulates the change of an object property
- Since:
- 2012.0
-
Constructor Summary
ConstructorDescriptionTLspPropertyChangeDescriptor
(String aPropertyName, T aOldValue, T aNewValue) Creates a newTLspPropertyChangeDescriptor
, describing a change for the property with the given name, its old value, and its new value. -
Method Summary
Modifier and TypeMethodDescriptionThe new value to setThe old value, if anyThe name of the property to be modified
-
Constructor Details
-
TLspPropertyChangeDescriptor
Creates a newTLspPropertyChangeDescriptor
, describing a change for the property with the given name, its old value, and its new value.- Parameters:
aPropertyName
- the property name.aOldValue
- the old value.aNewValue
- the new value.
-
-
Method Details
-
getPropertyName
The name of the property to be modified- Returns:
- the name of the property
-
getNewValue
The new value to set- Returns:
- the new value
-
getOldValue
The old value, if any- Returns:
- the old value
-