Package | com.adobe.dct.model |
Classe | public class DEPDictionaryModel |
Héritage | DEPDictionaryModel 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 |
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.
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 | ||
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é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. | DEPDictionaryModel | ||
Distribue un événement dans le flux d’événements. | EventDispatcher | ||
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 | ||
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 |
Constante | Défini par | ||
---|---|---|---|
TYPE_PERSISTENT : String = "PERSISTENT" [statique]
The constant corresponding to the persistent data dictionary. | DEPDictionaryModel | ||
TYPE_TRANSIENT : String = "TRANSIENT" [statique]
The constant corresponding to the placeholder DD. | DEPDictionaryModel |
description | propriété |
description:String
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 description of the DEPDictionaryModel.
Cette propriété peut être utilisée comme source de la liaison de données. Lorsque cette propriété est modifiée, elle distribue l’événement propertyChange
.
Implémentation
public function get description():String
public function set description(value:String):void
name | propriété |
name:String
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 |
Gets the unique name of the Data Dictionary.
Implémentation
public function get name():String
public function set name(value:String):void
rootDataElement | propriété |
rootDataElement:DataElementModel
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 root DataElementModel within the data dictionary.
Implémentation
public function get rootDataElement():DataElementModel
public function set rootDataElement(value:DataElementModel):void
Eléments de l’API associés
type | propriété |
type:String
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 |
Gets the TYPE of the Data Dictionary.
Implémentation
public function get type():String
public function set type(value:String):void
vo | propriété |
vo: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 underlying Data Dictionary value object.
Implémentation
public function get vo():DataDictionary
public function set vo(value:DataDictionary):void
createFromVO | () | méthode |
public static function createFromVO(dataDictionaryVO:DataDictionary):DEPDictionaryModel
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
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"
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 constant corresponding to the persistent data dictionary.
TYPE_TRANSIENT | Constante |
public static const TYPE_TRANSIENT:String = "TRANSIENT"
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 constant corresponding to the placeholder DD.
Tue Jun 12 2018, 09:30 AM Z