Пакет | com.adobe.solutions.exm.runtime.impl |
Класс | public class ExpressionManagerImpl |
Наследование | ExpressionManagerImpl Object |
Реализует | IExpressionManager |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Expression Manager Building Block 10 |
Версии среды выполнения: | AIR (unsupported), Flash Player 10.2 |
Свойство | Определено | ||
---|---|---|---|
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
functionMapper : IFunctionMapper
Returns the function mapper used for resolving function calls in expressions. | ExpressionManagerImpl | ||
variableResolver : IVariableResolver
Returns the variable resolver used for resolving variables in expressions. | ExpressionManagerImpl |
Метод | Определено | ||
---|---|---|---|
Assigns the result of evaluation of the given expression to the given variable. | ExpressionManagerImpl | ||
Показывает, определено ли заданное свойство для объекта. | Object | ||
Показывает, есть ли экземпляр класса Object в цепи прототипов объекта, заданного в качестве параметра. | Object | ||
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. | ExpressionManagerImpl | ||
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. | ExpressionManagerImpl | ||
Returns a list of ComputedExpression instances for the given list of expression objects. | ExpressionManagerImpl | ||
Показывает наличие заданного свойства и его перечисляемость. | Object | ||
Задает доступность динамического свойства для операций цикла. | Object | ||
Возвращает строковое представление этого объекта, отформатированного в соответствии со стандартами, принятыми для данной локали. | Object | ||
Возвращает строковое представление заданного объекта. | Object | ||
Возвращает элементарное значение заданного объекта. | Object |
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, 11:34 AM Z