Paquete | com.adobe.dct.exp |
Clase | public class DDIModelVariableResolver |
Herencia | DDIModelVariableResolver EventDispatcher Object |
Implementa | IVariableResolver |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
dataDictionaryInstanceModelList : IList
The underlying list of data dictionary instance models. | DDIModelVariableResolver |
Método | Definido por | ||
---|---|---|---|
DDIModelVariableResolver(ddiModelList:IList = null)
Constructor. | DDIModelVariableResolver | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento. | EventDispatcher | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Gets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Sets the value of data dictionary element of a particular data dictionary. | DDIModelVariableResolver | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Evento | Resumen | Definido por | ||
---|---|---|---|---|
[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos. | EventDispatcher | |||
[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos. | EventDispatcher | |||
Dispatched when the value of a variable is changed. | DDIModelVariableResolver |
Constante | Definido por | ||
---|---|---|---|
DD_PREFIX : String = "DD_" [estática]
Prefix for the key i.e. | DDIModelVariableResolver | ||
keyDelimiter : String = "_" [estática]
This key delimiter. | DDIModelVariableResolver |
dataDictionaryInstanceModelList | propiedad |
dataDictionaryInstanceModelList:IList
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
The underlying list of data dictionary instance models.
Esta propiedad se puede utilizar como origen para la vinculación de datos. Cuando se modifica esta propiedad, distribuye el evento dataDictionaryInstanceListChanged
.
Implementación
public function get dataDictionaryInstanceModelList():IList
public function set dataDictionaryInstanceModelList(value:IList):void
DDIModelVariableResolver | () | Información sobre |
public function DDIModelVariableResolver(ddiModelList:IList = null)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Constructor.
ParámetrosddiModelList:IList (default = null ) — list of data dictionary instance models.
|
getValue | () | método |
public function getValue(varName:String):Object
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Gets the value of data dictionary element of a particular data dictionary.
Parámetros
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étodo |
public function setValue(varName:String, value:Object):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Sets the value of data dictionary element of a particular data dictionary.
Parámetros
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
propiedad VariableChangeEvent.type =
com.adobe.solutions.exm.runtime.VariableChangeEvent
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | 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_"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | 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 = "_"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Data Dictionary 10 |
Versiones de motor de ejecución: | 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:12 PM Z