Class AbstractDelegatingValueSource
- java.lang.Object
-
- org.codehaus.plexus.interpolation.fixed.AbstractDelegatingValueSource
-
- All Implemented Interfaces:
FixedValueSource
- Direct Known Subclasses:
PrefixedObjectValueSource
,PrefixedPropertiesValueSource
public abstract class AbstractDelegatingValueSource extends java.lang.Object implements FixedValueSource
-
-
Field Summary
Fields Modifier and Type Field Description private FixedValueSource
delegate
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractDelegatingValueSource(FixedValueSource delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FixedValueSource
getDelegate()
java.lang.Object
getValue(java.lang.String expression, InterpolationState interpolationState)
-
-
-
Field Detail
-
delegate
private final FixedValueSource delegate
-
-
Constructor Detail
-
AbstractDelegatingValueSource
protected AbstractDelegatingValueSource(FixedValueSource delegate)
-
-
Method Detail
-
getDelegate
protected FixedValueSource getDelegate()
-
getValue
public java.lang.Object getValue(java.lang.String expression, InterpolationState interpolationState)
- Specified by:
getValue
in interfaceFixedValueSource
- Parameters:
expression
- The expression.interpolationState
-InterpolationState
.- Returns:
- the value related to the expression, or null if not found (not available from this source)
-
-