Paquete | com.adobe.dct.model |
Clase | public class DataDictionaryInstanceModel |
Herencia | DataDictionaryInstanceModel EventDispatcher 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 |
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | 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étodo | Definido por | ||
---|---|---|---|
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 | ||
[estática]
Creates the domain object from the corresponding value object. | DataDictionaryInstanceModel | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
The value of a data dictionary element given its unique name(referenceName). | DataDictionaryInstanceModel | ||
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 | ||
Set the value of a data dictionary element given its unique name(reference name). | DataDictionaryInstanceModel | ||
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 |
dataDictionary | propiedad |
dataDictionary:DataDictionary
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 data dictionary corresponding to the data dictionary instance model.
Implementación
public function get dataDictionary():DataDictionary
public function set dataDictionary(value:DataDictionary):void
vo | propiedad |
vo:DataDictionaryInstance
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 data dictionary instance value object.
Implementación
public function get vo():DataDictionaryInstance
public function set vo(value:DataDictionaryInstance):void
createFromVO | () | método |
public static function createFromVO(vo:DataDictionaryInstance):DataDictionaryInstanceModel
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 |
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.
Parámetros
vo:DataDictionaryInstance — The value object of the type DataDictionaryInstance.
|
DataDictionaryInstanceModel — The Data Element domain object corresponding the passed DataDictionaryElement value object.
|
getValue | () | método |
public function getValue(key: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 |
The value of a data dictionary element given its unique name(referenceName).
Parámetros
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é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 |
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.
Parámetros
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, 02:12 PM Z