Pacchetto | com.adobe.solutions.exm.authoring.domain.expression |
Interfaccia | public interface IExpression extends IEventDispatcher |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Proprietà | Definito da | ||
---|---|---|---|
assignedTo : String
Returns the variable this expression is assigned to, or null if the expression is not assigned
to any variable. | IExpression | ||
description : String
Returns a human-readable verbose description for this expression. | IExpression | ||
displayName : String
Returns a human-readable display-text for this expression. | IExpression | ||
expression : String
Returns the actual expression string represented by this expression. | IExpression | ||
id : String [sola lettura]
Returns the unique ID of this expression. | IExpression |
Metodo | Definito da | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | IEventDispatcher | ||
Fires an asynchronous operation for creating this expression in the expression repository. | IExpression | ||
Fires an asynchronous operation for deleting this expression from the expression repository. | IExpression | ||
Invia un evento nel flusso di eventi. | IEventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | IEventDispatcher | ||
Returns the list of variables referenced inside this expression. | IExpression | ||
Rimuove un listener dall'oggetto EventDispatcher. | IEventDispatcher | ||
Fires an asynchronous operation for updating this expression in the expression repository. | IExpression | ||
Validates this expression for syntactic correctness. | IExpression | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | IEventDispatcher |
Evento | Riepilogo | Definito da | ||
---|---|---|---|---|
Dispatched when the expression is successfully created in the expression repository. | IExpression | |||
Dispatched when the expression is successfully deleted from the expression repository. | IExpression | |||
Dispatched when an error occurs while creating/updating/deleting the expression in the expression repository. | IExpression | |||
Dispatched when the expression is successfully updated in the expression repository. | IExpression |
assignedTo | proprietà |
assignedTo:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Returns the variable this expression is assigned to, or null if the expression is not assigned to any variable.
Implementazione
public function get assignedTo():String
public function set assignedTo(value:String):void
description | proprietà |
description:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Returns a human-readable verbose description for this expression.
Implementazione
public function get description():String
public function set description(value:String):void
displayName | proprietà |
displayName:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Returns a human-readable display-text for this expression.
Implementazione
public function get displayName():String
public function set displayName(value:String):void
expression | proprietà |
expression:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Returns the actual expression string represented by this expression.
Implementazione
public function get expression():String
public function set expression(value:String):void
id | proprietà |
createExpression | () | metodo |
public function createExpression():void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for creating this expression in the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation succeeds, an event with name "expressionCreateEvent" of type ExpressionCreateEvent. The 'expression' property of the event will be a reference to the current expression object.
- If the operation fails, an event with name "expressionErrorEvent" of type ErrorEvent. The 'error' property on the event will contain the actual error thrown by the operation.
deleteExpression | () | metodo |
public function deleteExpression():void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for deleting this expression from the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation succeeds, an event with name "expressionDeleteEvent" of type ExpressionDeleteEvent. The 'expression' property of the event will be a reference to the current expression object.
- If the operation fails, an event with name "expressionErrorEvent" of type ErrorEvent. The 'error' property on the event will contain the actual error thrown by the operation.
referencedVariables | () | metodo |
public function referencedVariables():IList
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Returns the list of variables referenced inside this expression.
RestituisceIList — A list of string variable-names corresponding to the variables referenced inside this expression.
|
updateExpression | () | metodo |
public function updateExpression():void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for updating this expression in the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation succeeds, an event with name "expressionUpdateEvent" of type ExpressionUpdateEvent. The 'expression' property of the event will be a reference to the current expression object.
- If the operation fails, an event with name "expressionErrorEvent" of type ErrorEvent. The 'error' property on the event will contain the actual error thrown by the operation.
validate | () | metodo |
public function validate():ExpressionValidationResult
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Validates this expression for syntactic correctness.
RestituisceExpressionValidationResult — An ExpressionValidationResult instance encapsulating the result of validation.
|
expressionCreateEvent | Evento |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionCreateEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully created in the expression repository.
expressionDeleteEvent | Evento |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionDeleteEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully deleted from the expression repository.
expressionErrorEvent | Evento |
com.adobe.solutions.exm.authoring.domain.ErrorEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when an error occurs while creating/updating/deleting the expression in the expression repository.
expressionUpdateEvent | Evento |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionUpdateEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Expression Manager 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the expression is successfully updated in the expression repository.
Tue Jun 12 2018, 02:44 PM Z