Pacote | com.adobe.dct.model |
Classe | public class DEPDictionaryModel |
Herança | DEPDictionaryModel 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 |
DEPDictionaryModel
class represents the domain object for the assets of type DataDictionary
which is used as data provider for DataElementsPanel.
Domain objects can be leveraged to build presentation on top of them. They ease the
process of coding views by abstracting all the service calls and maintaining meaningful
states.
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 | ||
description : String
The description of the DEPDictionaryModel. | DEPDictionaryModel | ||
name : String
Gets the unique name of the Data Dictionary. | DEPDictionaryModel | ||
rootDataElement : DataElementModel
The root DataElementModel within the data dictionary. | DEPDictionaryModel | ||
type : String
Gets the TYPE of the Data Dictionary. | DEPDictionaryModel | ||
vo : DataDictionary
The underlying Data Dictionary value object. | DEPDictionaryModel |
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. | DEPDictionaryModel | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
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 | ||
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 |
Constante | Definido por | ||
---|---|---|---|
TYPE_PERSISTENT : String = "PERSISTENT" [estático]
The constant corresponding to the persistent data dictionary. | DEPDictionaryModel | ||
TYPE_TRANSIENT : String = "TRANSIENT" [estático]
The constant corresponding to the placeholder DD. | DEPDictionaryModel |
description | propriedade |
description: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 |
The description of the DEPDictionaryModel.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento propertyChange
.
Implementação
public function get description():String
public function set description(value:String):void
name | propriedade |
rootDataElement | propriedade |
rootDataElement:DataElementModel
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 root DataElementModel within the data dictionary.
Implementação
public function get rootDataElement():DataElementModel
public function set rootDataElement(value:DataElementModel):void
Elementos da API relacionados
type | propriedade |
vo | propriedade |
vo: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 underlying Data Dictionary value object.
Implementação
public function get vo():DataDictionary
public function set vo(value:DataDictionary):void
createFromVO | () | método |
public static function createFromVO(dataDictionaryVO:DataDictionary):DEPDictionaryModel
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
dataDictionaryVO:DataDictionary — The value object of the type Category
|
DEPDictionaryModel — The Category domain object corresponding the passed Category value object.
|
TYPE_PERSISTENT | Constante |
public static const TYPE_PERSISTENT:String = "PERSISTENT"
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 constant corresponding to the persistent data dictionary.
TYPE_TRANSIENT | Constante |
public static const TYPE_TRANSIENT:String = "TRANSIENT"
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 constant corresponding to the placeholder DD.
Wed Jun 13 2018, 11:10 AM Z