Pacchetto | com.adobe.dct.model |
Classe | public class DataDictionaryInstanceModel |
Ereditarietà | DataDictionaryInstanceModel EventDispatcher Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
dataDictionary : DataDictionary
The data dictionary corresponding to the data dictionary instance model. | DataDictionaryInstanceModel | ||
vo : DataDictionaryInstance
The underlying data dictionary instance value object. | DataDictionaryInstanceModel |
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. | DataDictionaryInstanceModel | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
The value of a data dictionary element given its unique name(referenceName). | DataDictionaryInstanceModel | ||
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 | ||
Set the value of a data dictionary element given its unique name(reference name). | DataDictionaryInstanceModel | ||
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 |
dataDictionary | proprietà |
dataDictionary:DataDictionary
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The data dictionary corresponding to the data dictionary instance model.
Implementazione
public function get dataDictionary():DataDictionary
public function set dataDictionary(value:DataDictionary):void
vo | proprietà |
vo:DataDictionaryInstance
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The underlying data dictionary instance value object.
Implementazione
public function get vo():DataDictionaryInstance
public function set vo(value:DataDictionaryInstance):void
createFromVO | () | metodo |
public static function createFromVO(vo:DataDictionaryInstance):DataDictionaryInstanceModel
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
vo:DataDictionaryInstance — The value object of the type DataDictionaryInstance.
|
DataDictionaryInstanceModel — The Data Element domain object corresponding the passed DataDictionaryElement value object.
|
getValue | () | metodo |
public function getValue(key:String):Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The value of a data dictionary element given its unique name(referenceName).
Parametri
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 | () | metodo |
public function setValue(varName:String, value:Object):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni 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.
Parametri
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.
|
Tue Jun 12 2018, 02:44 PM Z