Packageorg.spicefactory.lib.expr
Interfacepublic interface Expression
Implementors CompositeExpression, LiteralExpression, ValueExpression

Represents a single expression. Expressions are String values that may contain dynamic values surrounded by ${...} which will be resolved by VariableResolver and/or PropertyResolver instances. Example: "The person must be at least ${config.minAge} years old."



Public Properties
 PropertyDefined By
  expressionString : String
[read-only] The unresolved expression string.
Expression
  value : *
[read-only] The fully resolved value of this expression.
Expression
Property Detail
expressionStringproperty
expressionString:String  [read-only]

The unresolved expression string.


Implementation
    public function get expressionString():String
valueproperty 
value:*  [read-only]

The fully resolved value of this expression.


Implementation
    public function get value():*