Interface EvaluationContext
-
public interface EvaluationContext
Processing context for a component descriptor processor provided evaluator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
get(java.lang.String name)
Resolve some property in the current resolution processjava.util.Map<java.lang.Object,java.lang.Object>
getRawProperties()
Access to the raw, unprocessed property setboolean
has(java.lang.String name)
Check if some property is defined (not necessarily evaluated yet)
-
-
-
Method Detail
-
get
java.lang.Object get(java.lang.String name) throws EvaluationException
Resolve some property in the current resolution process- Throws:
EvaluationException
-
has
boolean has(java.lang.String name)
Check if some property is defined (not necessarily evaluated yet)
-
getRawProperties
java.util.Map<java.lang.Object,java.lang.Object> getRawProperties()
Access to the raw, unprocessed property set
-
-