Pacote | com.adobe.dct.model |
Classe | public class DataDictionaryInstanceModel |
Herança | DataDictionaryInstanceModel EventDispatcher 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 |
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 | ||
dataDictionary : DataDictionary
The data dictionary corresponding to the data dictionary instance model. | DataDictionaryInstanceModel | ||
vo : DataDictionaryInstance
The underlying data dictionary instance value object. | DataDictionaryInstanceModel |
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. | EventDispatcher | ||
[estático]
Creates the domain object from the corresponding value object. | DataDictionaryInstanceModel | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
The value of a data dictionary element given its unique name(referenceName). | DataDictionaryInstanceModel | ||
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 | ||
Set the value of a data dictionary element given its unique name(reference name). | DataDictionaryInstanceModel | ||
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 |
dataDictionary | propriedade |
dataDictionary:DataDictionary
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 data dictionary corresponding to the data dictionary instance model.
Implementação
public function get dataDictionary():DataDictionary
public function set dataDictionary(value:DataDictionary):void
vo | propriedade |
vo:DataDictionaryInstance
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 data dictionary instance value object.
Implementação
public function get vo():DataDictionaryInstance
public function set vo(value:DataDictionaryInstance):void
createFromVO | () | método |
public static function createFromVO(vo:DataDictionaryInstance):DataDictionaryInstanceModel
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 |
Creates the domain object from the corresponding value object.
Value Objects are pure data entities mostly acting as parameters to the server apis. Domain objects are build atop to provide more meaningful business data and behavior thereby enabling faster and convenient UI view development.
Parâmetros
vo:DataDictionaryInstance — The value object of the type DataDictionaryInstance.
|
DataDictionaryInstanceModel — The Data Element domain object corresponding the passed DataDictionaryElement value object.
|
getValue | () | método |
public function getValue(key: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 |
The value of a data dictionary element given its unique name(referenceName).
Parâmetros
key:String — reference name of a data dictionary element.
|
Object — value for data dictionary element in the data dictionary instance model.
A value of |
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 |
Set the value of a data dictionary element given its unique name(reference name). The value of primitive, composite and top Level collection elements can be set using this method. It doesn't allow setting the value inside a collection and there is no support for index.
Parâmetros
varName:String — reference name of the data dictionary element.
| |
value:Object — the value of data dictionary element to be set inside the data dictionary instance model.
|
Wed Jun 13 2018, 11:10 AM Z