Class ObjectBasedValueSource
java.lang.Object
org.codehaus.plexus.interpolation.AbstractValueSource
org.apache.maven.model.interpolation.ObjectBasedValueSource
- All Implemented Interfaces:
- org.codehaus.plexus.interpolation.ValueSource
public class ObjectBasedValueSource
extends org.codehaus.plexus.interpolation.AbstractValueSource
Wraps an object, providing reflective access to the object graph of which the
 supplied object is the root. Expressions like 'child.name' will translate into
 'rootObject.getChild().getName()' for non-boolean properties, and
 'rootObject.getChild().isName()' for boolean properties.
- 
Constructor SummaryConstructorsConstructorDescriptionObjectBasedValueSource(Object root) Construct a new value source, using the supplied object as the root from which to start, and using expressions split at the dot ('.') to navigate the object graph beneath this root.
- 
Method SummaryMethods inherited from class org.codehaus.plexus.interpolation.AbstractValueSourceaddFeedback, addFeedback, clearFeedback, getFeedback
- 
Constructor Details- 
ObjectBasedValueSourceConstruct a new value source, using the supplied object as the root from which to start, and using expressions split at the dot ('.') to navigate the object graph beneath this root.- Parameters:
- root- the root of the graph.
 
 
- 
- 
Method Details- 
getValueSplit the expression into parts, tokenized on the dot ('.') character. Then, starting at the root object contained in this value source, apply each part to the object graph below this root, using either 'getXXX()' or 'isXXX()' accessor types to resolve the value for each successive expression part. Finally, return the result of the last expression part's resolution. NOTE: The object-graph nagivation actually takes place via the ReflectionValueExtractorclass.
 
-