Pacote | com.adobe.dct.exp |
Classe | public class DDIModelVariableResolver |
Herança | DDIModelVariableResolver EventDispatcher Object |
Implementações | IVariableResolver |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Propriedade | Definido por | ||
---|---|---|---|
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
dataDictionaryInstanceModelList : IList
The underlying list of data dictionary instance models. | DDIModelVariableResolver |
Método | Definido por | ||
---|---|---|---|
DDIModelVariableResolver(ddiModelList:IList = null)
Constructor. | DDIModelVariableResolver | ||
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. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
Gets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Sets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when the value of a variable is changed. | DDIModelVariableResolver |
Constante | Definido por | ||
---|---|---|---|
DD_PREFIX : String = "DD_" [estático]
Prefix for the key i.e. | DDIModelVariableResolver | ||
keyDelimiter : String = "_" [estático]
This key delimiter. | DDIModelVariableResolver |
dataDictionaryInstanceModelList | propriedade |
dataDictionaryInstanceModelList:IList
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
The underlying list of data dictionary instance models.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento dataDictionaryInstanceListChanged
.
Implementação
public function get dataDictionaryInstanceModelList():IList
public function set dataDictionaryInstanceModelList(value:IList):void
DDIModelVariableResolver | () | Construtor |
public function DDIModelVariableResolver(ddiModelList:IList = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Constructor.
ParâmetrosddiModelList:IList (default = null ) — list of data dictionary instance models.
|
getValue | () | método |
public function getValue(varName:String):Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Gets the value of data dictionary element of a particular data dictionary.
Parâmetros
varName:String — the variable name which can uniquely identify a data dictionary element. The variable has to comply with the format DD_DataDictionaryName_DDEReferenceName.
|
Object — A value of null if the value of data dictionary element is null.
undefined if the data dictionary element key is missing in data dictionary instance.
typed value if the value for data dictionary element is present in DDI.
|
setValue | () | método |
public function setValue(varName:String, value:Object):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Sets the value of data dictionary element of a particular data dictionary.
Parâmetros
varName:String — the variable name which can uniquely identify a data dictionary element. The variable has to comply with the format DD_DataDictionaryName_DDEReferenceName.
| |
value:Object — the value of data dictionary element to be set.
|
variableChangeEvent | Evento |
com.adobe.solutions.exm.runtime.VariableChangeEvent
propriedade VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the value of a variable is changed. This event, being bubbling in nature, can be leveraged by the UI to update itself.
DD_PREFIX | Constante |
public static const DD_PREFIX:String = "DD_"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Prefix for the key i.e. ({DD_PREFIX}{DD name}.{DDE reference name}
).
keyDelimiter | Constante |
public static const keyDelimiter:String = "_"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Data Dictionary Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
This key delimiter. It is used to delimit the various parts of the key i.e DD_DataDictionaryName_DDEReferenceName.
Wed Jun 13 2018, 11:10 AM Z