Pacote | com.adobe.solutions.exm.authoring.domain.variable |
Interface | public interface IVariableProvider extends IEventDispatcher |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Expression Manager Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Métodos públicos
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | IEventDispatcher | ||
Envia um evento para o fluxo de eventos. | IEventDispatcher | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | IEventDispatcher | ||
Fires an asynchronous operation for retrieving the list of all variables available for use inside expressions
during authoring. | IVariableProvider | ||
Remove um ouvinte do objeto EventDispatcher. | IEventDispatcher | ||
Fires an asynchronous operation for retrieving the list of available variables which match the given search term. | IVariableProvider | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | IEventDispatcher |
Eventos
Evento | Resumo | Definido por | ||
---|---|---|---|---|
Dispatched when the provider encounters an error retrieving a list of variables. | IVariableProvider | |||
Dispatched when the provider successfully retrieves a list of variables. | IVariableProvider |
Detalhes do método
listVariables | () | método |
public function listVariables():String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Expression Manager Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for retrieving the list of all variables available for use inside expressions during authoring. Returns immediately and causes the current object to later dispatch one of the following events:
- If the operation completes successfuly, an event with name "variableProviderEvent" of type VariableProviderEvent. The 'variables' property of the event will be a reference to the list of available variables (IVariable 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 "variableProviderError" 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.
|
searchVariables | () | método |
public function searchVariables(searchTerm:String):String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Expression Manager Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Fires an asynchronous operation for retrieving the list of available variables which match 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 "variableProviderEvent" of type VariableProviderEvent. The 'variables' property of the event will be a reference to the list of matching variables (IVariable 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 "variableProviderError" 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.
Parâmetros
searchTerm:String — The search term to be used for filtering variables.
|
String — A unique request ID which calling code can use for correlating invocations of this method
with events dispatched later.
|
Detalhe do evento
variableProviderError | Evento |
Tipo do objeto de evento:
com.adobe.solutions.exm.authoring.domain.RequestAwareErrorEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Expression Manager Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the provider encounters an error retrieving a list of variables.
variableProviderEvent | Evento |
Tipo do objeto de evento:
com.adobe.solutions.exm.authoring.domain.variable.VariableProviderEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Expression Manager Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the provider successfully retrieves a list of variables.
Wed Jun 13 2018, 11:10 AM Z