Pacchetto | com.adobe.dct.model |
Classe | public class DEPDictionaryModel |
Ereditarietà | DEPDictionaryModel EventDispatcher Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni 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.
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | 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 |
Metodo | Definito da | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
[statico]
Creates the domain object from the corresponding value object. | DEPDictionaryModel | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Costante | Definito da | ||
---|---|---|---|
TYPE_PERSISTENT : String = "PERSISTENT" [statico]
The constant corresponding to the persistent data dictionary. | DEPDictionaryModel | ||
TYPE_TRANSIENT : String = "TRANSIENT" [statico]
The constant corresponding to the placeholder DD. | DEPDictionaryModel |
description | proprietà |
description:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The description of the DEPDictionaryModel.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange
.
Implementazione
public function get description():String
public function set description(value:String):void
name | proprietà |
rootDataElement | proprietà |
rootDataElement:DataElementModel
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The root DataElementModel within the data dictionary.
Implementazione
public function get rootDataElement():DataElementModel
public function set rootDataElement(value:DataElementModel):void
Elementi API correlati
type | proprietà |
vo | proprietà |
vo:DataDictionary
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The underlying Data Dictionary value object.
Implementazione
public function get vo():DataDictionary
public function set vo(value:DataDictionary):void
createFromVO | () | metodo |
public static function createFromVO(dataDictionaryVO:DataDictionary):DEPDictionaryModel
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni 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.
Parametri
dataDictionaryVO:DataDictionary — The value object of the type Category
|
DEPDictionaryModel — The Category domain object corresponding the passed Category value object.
|
TYPE_PERSISTENT | Costante |
public static const TYPE_PERSISTENT:String = "PERSISTENT"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The constant corresponding to the persistent data dictionary.
TYPE_TRANSIENT | Costante |
public static const TYPE_TRANSIENT:String = "TRANSIENT"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The constant corresponding to the placeholder DD.
Tue Jun 12 2018, 02:44 PM Z