Interface ILcdDataPropertyTransformation
public interface ILcdDataPropertyTransformation
Transformation that is capable of transforming the value of a single property of a source
object to a target object. Note that in case the source property is a list property,
the given value is an instance of
java.util.List
.- Since:
- 11.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
transform
(ILcdDataObject aSourceObject, TLcdDataProperty aSourceProperty, Object aValue, Object aTargetObject, Map<Object, Object> aContext) Transforms the given source value to an appropriate representation on the target object.
-
Method Details
-
transform
void transform(ILcdDataObject aSourceObject, TLcdDataProperty aSourceProperty, Object aValue, Object aTargetObject, Map<Object, Object> aContext) Transforms the given source value to an appropriate representation on the target object. The given value is the value of the source property of the given source object.- Parameters:
aSourceObject
- the source objectaSourceProperty
- the source propertyaValue
- the value to transformaTargetObject
- the target objectaContext
- the transformation context
-