Pacchetto | com.adobe.dct.exp |
Classe | public class DDIModelVariableResolver |
Ereditarietà | DDIModelVariableResolver EventDispatcher Object |
Implementa | IVariableResolver |
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 | ||
dataDictionaryInstanceModelList : IList
The underlying list of data dictionary instance models. | DDIModelVariableResolver |
Metodo | Definito da | ||
---|---|---|---|
DDIModelVariableResolver(ddiModelList:IList = null)
Constructor. | DDIModelVariableResolver | ||
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 | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Gets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
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 | ||
Sets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
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 |
Evento | Riepilogo | Definito da | ||
---|---|---|---|---|
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR ottiene lo stato di attivazione del sistema operativo ed entra nello stato attivo. | EventDispatcher | |||
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR perde l'attivazione del sistema operativo e sta entrando nello stato inattivo. | EventDispatcher | |||
Dispatched when the value of a variable is changed. | DDIModelVariableResolver |
Costante | Definito da | ||
---|---|---|---|
DD_PREFIX : String = "DD_" [statico]
Prefix for the key i.e. | DDIModelVariableResolver | ||
keyDelimiter : String = "_" [statico]
This key delimiter. | DDIModelVariableResolver |
dataDictionaryInstanceModelList | proprietà |
dataDictionaryInstanceModelList:IList
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
The underlying list of data dictionary instance models.
Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento dataDictionaryInstanceListChanged
.
Implementazione
public function get dataDictionaryInstanceModelList():IList
public function set dataDictionaryInstanceModelList(value:IList):void
DDIModelVariableResolver | () | Funzione di costruzione |
public function DDIModelVariableResolver(ddiModelList:IList = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Constructor.
ParametriddiModelList:IList (default = null ) — list of data dictionary instance models.
|
getValue | () | metodo |
public function getValue(varName:String):Object
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Gets the value of data dictionary element of a particular data dictionary.
Parametri
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 | () | 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 |
Sets the value of data dictionary element of a particular data dictionary.
Parametri
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 | Evento |
com.adobe.solutions.exm.runtime.VariableChangeEvent
proprietà VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | 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 | Costante |
public static const DD_PREFIX:String = "DD_"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Prefix for the key i.e. ({DD_PREFIX}{DD name}.{DDE reference name}
).
keyDelimiter | Costante |
public static const keyDelimiter:String = "_"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Data Dictionary 10 |
Versioni runtime: | 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, 02:44 PM Z