Package | com.adobe.solutions.exm.runtime.impl |
Classe | public class ExpressionManagerImpl |
Héritage | ExpressionManagerImpl Object |
Implémente | IExpressionManager |
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Propriété | Défini par | ||
---|---|---|---|
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | 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 |
Méthode | Défini par | ||
---|---|---|---|
Assigns the result of evaluation of the given expression to the given variable. | ExpressionManagerImpl | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | 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 | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
functionMapper | propriété |
functionMapper:IFunctionMapper
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Returns the function mapper used for resolving function calls in expressions.
Implémentation
public function get functionMapper():IFunctionMapper
public function set functionMapper(value:IFunctionMapper):void
variableResolver | propriété |
variableResolver:IVariableResolver
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Returns the variable resolver used for resolving variables in expressions.
Implémentation
public function get variableResolver():IVariableResolver
public function set variableResolver(value:IVariableResolver):void
assignTo | () | méthode |
public function assignTo(assignTo:String, expression:String):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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.).
Paramètres
assignTo:String — The target variable to which the result of expression evaluation is assigned.
| |
expression:String — The expression to be evaluated.
|
manage | () | méthode |
public function manage(expression:String):IComputedExpression
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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.
Paramètres
expression:String — An expression string.
|
IComputedExpression — A ComputedExpression instance for the given expression string.
|
manageExpression | () | méthode |
public function manageExpression(expression:IExpression):IComputedExpression
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | 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.
Paramètres
expression:IExpression — An expression object with the 'expression' property, and optionally the
'assignTo' property, set.
|
IComputedExpression — A ComputedExpression instance for the given expression.
|
manageList | () | méthode |
public function manageList(expressionsVector:Vector.<IExpression>):Vector.<IComputedExpression>
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Expression Manager 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Returns a list of ComputedExpression instances for the given list of expression objects.
Paramètres
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, 09:30 AM Z