Pakket | com.adobe.solutions.exm.authoring.domain.expression |
Interface | public interface IExpressionProvider extends IEventDispatcher |
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Methode | Gedefinieerd door | ||
---|---|---|---|
![]() | addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | IEventDispatcher | |
![]() |
Verzendt een gebeurtenis naar de gebeurtenisstroom. | IEventDispatcher | |
Fires an asynchronous operation for retrieving the expression with the given ID from the expression repository. | IExpressionProvider | ||
![]() |
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | IEventDispatcher | |
Fires an asynchronous operation for retrieving the list of all available expressions. | IExpressionProvider | ||
Creates a new transient expression object and returns it. | IExpressionProvider | ||
![]() |
Verwijdert een listener uit het object EventDispatcher. | IEventDispatcher | |
Fires an asynchronous operation for retrieving the list of available expressions matching the given search term. | IExpressionProvider | ||
Validates a batch of expressions (IExpression instances) for syntactic correctness
and cyclic dependencies. | IExpressionProvider | ||
![]() |
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | IEventDispatcher |
Gebeurtenis | Overzicht | Gedefinieerd door | ||
---|---|---|---|---|
Dispatched when the provider encounters an error retrieving an expression from the repository. | IExpressionProvider | |||
Dispatched when the provider successfully retrieves an expression from the repository. | IExpressionProvider | |||
Dispatched when the provider encounters an error retrieving a set of expressions from the repository. | IExpressionProvider | |||
Dispatched when the provider successfully retrieves a set of expressions from the repository. | IExpressionProvider |
getExpression | () | methode |
public function getExpression(exprId:String):void
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for retrieving the expression with the given ID from the expression repository. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation completes successfully, an event with name "expressionGetEvent" of type ExpressionGetEvent. The 'expression' property of the event will be a reference to the loaded expression object, and will have the same ID as the one passed as input to this method.
- If the operation errors out, an event with name "expressionGetError" of type ErrorEvent. The 'error' property of the event will contain the actual error thrown by the operation.
Parameters
exprId:String — The ID of the expression to be retrieved.
|
listExpressions | () | methode |
public function listExpressions():String
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for retrieving the list of all available expressions. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation completes successfuly, an event with name "expressionListProviderEvent" of type ExpressionListProviderEvent. The 'expressions' property of the event will be a reference to the list of expressions (IExpression objects) in the system. The 'requestId' property of the event will be the same as the value returned by this method, which is a unique string that calling code can use for correlating calls to this method with events dispatched later.
- If the operation errors out, an event with name "expressionListError" of type RequestAwareErrorEvent. The 'requestId' property of the event will be the same as the value returned by this method, while the 'error' property will contain the actual error thrown by the operation.
String — A unique request ID which calling code can use for correlating invocations of this method
with events dispatched later.
|
newExpression | () | methode |
public function newExpression():IExpression
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Creates a new transient expression object and returns it.
Geretourneerde waardeIExpression — A new transient expression object.
|
searchExpressions | () | methode |
public function searchExpressions(searchTerm:String):String
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for retrieving the list of available expressions matching the given search term. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation completes successfuly, an event with name "expressionListProviderEvent" of type ExpressionListProviderEvent. The 'expressions' property of the event will be a reference to the list of matching expressions (IExpression objects). The 'requestId' property of the event will be the same as the value returned by this method, which is a unique string that calling code can use for correlating calls to this method with events dispatched later.
- If the operation errors out, an event with name "expressionListError" of type RequestAwareErrorEvent. The 'requestId' property of the event will be the same as the value returned by this method, while the 'error' property will contain the actual error thrown by the operation.
Parameters
searchTerm:String |
String — A unique request ID which calling code can use for correlating invocations of this method
with events dispatched later.
|
validate | () | methode |
public function validate(expressions:IList):void
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Validates a batch of expressions (IExpression instances) for syntactic correctness and cyclic dependencies. Returns quietly if validation succeeds, else throws one of the following errors:
- ExpressionValidationError if any of the expressions is syntactically incorrect.
- SimpleCyclicDependencyError if a simple cycle involving one variable is detected in an expression.
- ComplexCyclicDependencyError if a complex cycle involving two or more variables is detected over multiple expressions.
Parameters
expressions:IList — The list of expressions (IExpression instances) to be validated.
|
expressionGetError | Gebeurtenis |
com.adobe.solutions.exm.authoring.domain.ErrorEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the provider encounters an error retrieving an expression from the repository.
expressionGetEvent | Gebeurtenis |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionGetEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the provider successfully retrieves an expression from the repository.
expressionListError | Gebeurtenis |
com.adobe.solutions.exm.authoring.domain.RequestAwareErrorEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the provider encounters an error retrieving a set of expressions from the repository.
expressionListProviderEvent | Gebeurtenis |
com.adobe.solutions.exm.authoring.domain.expression.ExpressionListProviderEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Expression Manager Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the provider successfully retrieves a set of expressions from the repository.
Wed Jun 13 2018, 11:42 AM Z