Paket | com.adobe.solutions.exm.runtime.impl |
Klasse | public class ExpressionManagerImpl |
Vererbung | ExpressionManagerImpl Object |
Implementiert | IExpressionManager |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | AIR (unsupported), Flash Player 10.2 |
Eigenschaft | Definiert von | ||
---|---|---|---|
constructor : Object
Ein Verweis auf das Klassenobjekt oder die Konstruktorfunktion für eine angegebene Objektinstanz. | 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 |
Methode | Definiert von | ||
---|---|---|---|
Assigns the result of evaluation of the given expression to the given variable. | ExpressionManagerImpl | ||
Gibt an, ob für ein Objekt eine bestimmte Eigenschaft definiert wurde. | Object | ||
Gibt an, ob eine Instanz der Object-Klasse in der Prototypkette des Objekts vorhanden ist, das als Parameter angegeben wurde. | 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 | ||
Gibt an, ob die angegebene Eigenschaft vorhanden ist und durchlaufen werden kann. | Object | ||
Legt die Verfügbarkeit einer dynamischen Eigenschaft für Schleifenoperationen fest. | Object | ||
Gibt die Stringdarstellung dieses Objekts zurück, formatiert entsprechend den Konventionen des Gebietsschemas. | Object | ||
Gibt das angegebene Objekt als String zurück. | Object | ||
Gibt den Grundwert des angegebenen Objekts zurück. | Object |
functionMapper | Eigenschaft |
functionMapper:IFunctionMapper
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | AIR (unsupported), Flash Player 10.2 |
Returns the function mapper used for resolving function calls in expressions.
Implementierung
public function get functionMapper():IFunctionMapper
public function set functionMapper(value:IFunctionMapper):void
variableResolver | Eigenschaft |
variableResolver:IVariableResolver
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | AIR (unsupported), Flash Player 10.2 |
Returns the variable resolver used for resolving variables in expressions.
Implementierung
public function get variableResolver():IVariableResolver
public function set variableResolver(value:IVariableResolver):void
assignTo | () | Methode |
public function assignTo(assignTo:String, expression:String):void
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | 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.).
Parameter
assignTo:String — The target variable to which the result of expression evaluation is assigned.
| |
expression:String — The expression to be evaluated.
|
manage | () | Methode |
public function manage(expression:String):IComputedExpression
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | 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.
Parameter
expression:String — An expression string.
|
IComputedExpression — A ComputedExpression instance for the given expression string.
|
manageExpression | () | Methode |
public function manageExpression(expression:IExpression):IComputedExpression
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | 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.
Parameter
expression:IExpression — An expression object with the 'expression' property, and optionally the
'assignTo' property, set.
|
IComputedExpression — A ComputedExpression instance for the given expression.
|
manageList | () | Methode |
public function manageList(expressionsVector:Vector.<IExpression>):Vector.<IComputedExpression>
Sprachversion: | ActionScript 3.0 |
Produktversion: | Baustein „Expression Manager“ 10 |
Laufzeitversionen: | AIR (unsupported), Flash Player 10.2 |
Returns a list of ComputedExpression instances for the given list of expression objects.
Parameter
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:04 AM Z