Paquete | com.adobe.dct.model |
Clase | public class DEPDictionaryModel |
Herencia | DEPDictionaryModel 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 |
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.
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | 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é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. | DEPDictionaryModel | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
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 | ||
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 |
Constante | Definido por | ||
---|---|---|---|
TYPE_PERSISTENT : String = "PERSISTENT" [estática]
The constant corresponding to the persistent data dictionary. | DEPDictionaryModel | ||
TYPE_TRANSIENT : String = "TRANSIENT" [estática]
The constant corresponding to the placeholder DD. | DEPDictionaryModel |
description | propiedad |
description: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 |
The description of the DEPDictionaryModel.
Esta propiedad se puede utilizar como origen para la vinculación de datos. Cuando se modifica esta propiedad, distribuye el evento propertyChange
.
Implementación
public function get description():String
public function set description(value:String):void
name | propiedad |
name: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 |
Gets the unique name of the Data Dictionary.
Implementación
public function get name():String
public function set name(value:String):void
rootDataElement | propiedad |
rootDataElement:DataElementModel
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 root DataElementModel within the data dictionary.
Implementación
public function get rootDataElement():DataElementModel
public function set rootDataElement(value:DataElementModel):void
Elementos de API relacionados
type | propiedad |
type: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 |
Gets the TYPE of the Data Dictionary.
Implementación
public function get type():String
public function set type(value:String):void
vo | propiedad |
vo: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 underlying Data Dictionary value object.
Implementación
public function get vo():DataDictionary
public function set vo(value:DataDictionary):void
createFromVO | () | método |
public static function createFromVO(dataDictionaryVO:DataDictionary):DEPDictionaryModel
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
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"
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 constant corresponding to the persistent data dictionary.
TYPE_TRANSIENT | Constante |
public static const TYPE_TRANSIENT:String = "TRANSIENT"
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 constant corresponding to the placeholder DD.
Tue Jun 12 2018, 02:12 PM Z