Package | com.adobe.dct.exp |
Classe | public class DDIModelVariableResolver |
Héritage | DDIModelVariableResolver EventDispatcher Object |
Implémente | IVariableResolver |
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 | ||
dataDictionaryInstanceModelList : IList
The underlying list of data dictionary instance models. | DDIModelVariableResolver |
Méthode | Défini par | ||
---|---|---|---|
DDIModelVariableResolver(ddiModelList:IList = null)
Constructor. | DDIModelVariableResolver | ||
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 | ||
Distribue un événement dans le flux d’événements. | EventDispatcher | ||
Gets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
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 | ||
Sets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
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 |
Evénement | Synthèse | Défini par | ||
---|---|---|---|---|
[Evénement de diffusion] Distribué lorsque l’application Flash Player obtient le focus du système d’exploitation et devient active. | EventDispatcher | |||
[Evénement de diffusion] Distribué lorsque l’application Flash Player ou AIR perd le focus du système d’exploitation et devient inactive. | EventDispatcher | |||
Dispatched when the value of a variable is changed. | DDIModelVariableResolver |
Constante | Défini par | ||
---|---|---|---|
DD_PREFIX : String = "DD_" [statique]
Prefix for the key i.e. | DDIModelVariableResolver | ||
keyDelimiter : String = "_" [statique]
This key delimiter. | DDIModelVariableResolver |
dataDictionaryInstanceModelList | propriété |
dataDictionaryInstanceModelList:IList
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 list of data dictionary instance models.
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 dataDictionaryInstanceListChanged
.
Implémentation
public function get dataDictionaryInstanceModelList():IList
public function set dataDictionaryInstanceModelList(value:IList):void
DDIModelVariableResolver | () | Constructeur |
public function DDIModelVariableResolver(ddiModelList:IList = null)
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 |
Constructor.
ParamètresddiModelList:IList (default = null ) — list of data dictionary instance models.
|
getValue | () | méthode |
public function getValue(varName: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 |
Gets the value of data dictionary element of a particular data dictionary.
Paramètres
varName:String — the variable name which can uniquely identify a data dictionary element. The variable has to comply with the format DD_DataDictionaryName_DDEReferenceName.
|
Object — A value of null if the value of data dictionary element is null.
undefined if the data dictionary element key is missing in data dictionary instance.
typed value if the value for data dictionary element is present in DDI.
|
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 |
Sets the value of data dictionary element of a particular data dictionary.
Paramètres
varName:String — the variable name which can uniquely identify a data dictionary element. The variable has to comply with the format DD_DataDictionaryName_DDEReferenceName.
| |
value:Object — the value of data dictionary element to be set.
|
variableChangeEvent | Evénement |
com.adobe.solutions.exm.runtime.VariableChangeEvent
propriété VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
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 |
Dispatched when the value of a variable is changed. This event, being bubbling in nature, can be leveraged by the UI to update itself.
DD_PREFIX | Constante |
public static const DD_PREFIX:String = "DD_"
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 |
Prefix for the key i.e. ({DD_PREFIX}{DD name}.{DDE reference name}
).
keyDelimiter | Constante |
public static const keyDelimiter: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 |
This key delimiter. It is used to delimit the various parts of the key i.e DD_DataDictionaryName_DDEReferenceName.
Tue Jun 12 2018, 09:30 AM Z