パッケージ | 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, 10:34 AM Z