Package | com.adobe.dct.model |
Classe | public class DataDictionaryInstanceModel |
Héritage | DataDictionaryInstanceModel EventDispatcher Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
Propriété | Défini par | ||
---|---|---|---|
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | 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éthode | Défini par | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Enregistre un objet écouteur d’événement auprès d’un objet EventDispatcher afin que l’écouteur soit averti d’un événement. | EventDispatcher | ||
[statique]
Creates the domain object from the corresponding value object. | DataDictionaryInstanceModel | ||
Distribue un événement dans le flux d’événements. | EventDispatcher | ||
The value of a data dictionary element given its unique name(referenceName). | DataDictionaryInstanceModel | ||
Vérifie si des écouteurs sont enregistrés auprès de l’objet EventDispatcher pour un type spécifique d’événement. | EventDispatcher | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Supprime un écouteur de l’objet EventDispatcher. | EventDispatcher | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Set the value of a data dictionary element given its unique name(reference name). | DataDictionaryInstanceModel | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object | ||
Vérifie si un écouteur d’événement est enregistré auprès de cet objet EventDispatcher ou de ses ancêtres pour le type d’événement spécifié. | EventDispatcher |
dataDictionary | propriété |
dataDictionary:DataDictionary
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
The data dictionary corresponding to the data dictionary instance model.
Implémentation
public function get dataDictionary():DataDictionary
public function set dataDictionary(value:DataDictionary):void
vo | propriété |
vo:DataDictionaryInstance
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
The underlying data dictionary instance value object.
Implémentation
public function get vo():DataDictionaryInstance
public function set vo(value:DataDictionaryInstance):void
createFromVO | () | méthode |
public static function createFromVO(vo:DataDictionaryInstance):DataDictionaryInstanceModel
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 10 |
Versions du moteur d’exécution: | 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.
Paramètres
vo:DataDictionaryInstance — The value object of the type DataDictionaryInstance.
|
DataDictionaryInstanceModel — The Data Element domain object corresponding the passed DataDictionaryElement value object.
|
getValue | () | méthode |
public function getValue(key:String):Object
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 10 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 10.2 |
The value of a data dictionary element given its unique name(referenceName).
Paramètres
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éthode |
public function setValue(varName:String, value:Object):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Bloc de création Data Dictionary 10 |
Versions du moteur d’exécution: | 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.
Paramètres
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, 09:30 AM Z