패키지 | com.adobe.solutions.exm.runtime |
인터페이스 | public interface IExpressionManager |
구현자 | ExpressionManagerImpl |
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
속성 | 정의 주체 | ||
---|---|---|---|
functionMapper : IFunctionMapper
Returns the function mapper used for resolving function calls in expressions. | IExpressionManager | ||
variableResolver : IVariableResolver
Returns the variable resolver used for resolving variables in expressions. | IExpressionManager |
메서드 | 정의 주체 | ||
---|---|---|---|
Assigns the result of evaluation of the given expression to the given variable. | IExpressionManager | ||
Returns a ComputedExpression instance for the given expression string, which applications
can use for reading or binding to the result of evaluation of the expression. | IExpressionManager | ||
Returns a ComputedExpression instance for the given expression, and if the 'assignTo' property
of the given expression is set, automatically assigns the result of expression evaluation
to the variable represented by this property. | IExpressionManager | ||
Returns a list of ComputedExpression instances for the given list of expression objects. | IExpressionManager |
functionMapper | 속성 |
functionMapper:IFunctionMapper
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Returns the function mapper used for resolving function calls in expressions.
구현
public function get functionMapper():IFunctionMapper
public function set functionMapper(value:IFunctionMapper):void
variableResolver | 속성 |
variableResolver:IVariableResolver
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Returns the variable resolver used for resolving variables in expressions.
구현
public function get variableResolver():IVariableResolver
public function set variableResolver(value:IVariableResolver):void
assignTo | () | 메서드 |
public function assignTo(assignTo:String, expression:String):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Assigns the result of evaluation of the given expression to the given variable. The target variable is updated automatically whenever an expression recomputation event is triggered (e.g. due to a dependent variable change, etc.).
매개 변수
assignTo:String — The target variable to which the result of expression evaluation is assigned.
| |
expression:String — The expression to be evaluated.
|
manage | () | 메서드 |
public function manage(expression:String):IComputedExpression
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Returns a ComputedExpression instance for the given expression string, which applications can use for reading or binding to the result of evaluation of the expression.
매개 변수
expression:String — An expression string.
|
IComputedExpression — A ComputedExpression instance for the given expression string.
|
manageExpression | () | 메서드 |
public function manageExpression(expression:IExpression):IComputedExpression
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Returns a ComputedExpression instance for the given expression, and if the 'assignTo' property of the given expression is set, automatically assigns the result of expression evaluation to the variable represented by this property.
매개 변수
expression:IExpression — An expression object with the 'expression' property, and optionally the
'assignTo' property, set.
|
IComputedExpression — A ComputedExpression instance for the given expression.
|
manageList | () | 메서드 |
public function manageList(expressionsVector:Vector.<IExpression>):Vector.<IComputedExpression>
언어 버전: | ActionScript 3.0 |
제품 버전: | Expression Manager Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Returns a list of ComputedExpression instances for the given list of expression objects.
매개 변수
expressionsVector:Vector.<IExpression> — A list of Expression instances.
|
Vector.<IComputedExpression> — A list of ComputedExpression instances for the given list of expressions.
|
Tue Jun 12 2018, 03:17 PM Z