Paquete | com.adobe.icc.editors.managers |
Clase | public class DataDictionaryManager |
Herencia | DataDictionaryManager EventDispatcher Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
DataDictionaryManager
class helps retrieve and maintain
the list of data dictionary names existing in the system.
DataDictionaryManager
is a singleton class that acts as
the source of truth for listing the data dictionary names in the system. For
performance reasons, all application components should query the
DataDictionaryManager
instead of querying the server directly for
data dictionaries.
The DataDictionaryManager
caches the data dictionary names
and saves redundant server calls. The maintained lists
are auto-updated via LCDS server-push whenever a new data dictionary is
added or an existing category is updated locally or on remote clients.
Propiedad | Definido por | ||
---|---|---|---|
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
dataDictNames : IList
List of all data dictionary names of type non system. | DataDictionaryManager |
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 | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Fetches the data dictionary names from the backend server. | DataDictionaryManager | ||
[estática]
Gets the single instance of the DataDictionaryManager class. | DataDictionaryManager | ||
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 |
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 list of data dictionary names have been successfully fetched from the server. | DataDictionaryManager |
dataDictNames | propiedad |
dataDictNames:IList
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
List of all data dictionary names of type non system.
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 dataDictNames():IList
public function set dataDictNames(value:IList):void
fetchDataDictNames | () | método |
public function fetchDataDictNames():void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Fetches the data dictionary names from the backend server.
This method must be explicitly called at least once,
by the user application so as to let the DataDictionaryManager
obtain the list of data dictionary names from the server.
Subsequent data dictionary updates or creations, either locally or remotely, are automatically pushed to the dataDictNames property.
getInstance | () | método |
public static function getInstance():DataDictionaryManager
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Gets the single instance of the DataDictionaryManager class. This object manages the list of data dictionary names.
Valor devueltoDataDictionaryManager — An object of type DataDictionaryManager.
|
fetchComplete | Evento |
flash.events.Event
propiedad Event.type =
flash.events.Event
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Bloque de construcción Asset Composer 10 |
Versiones de motor de ejecución: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the list of data dictionary names have been successfully fetched from the server.
The fetch request can be made by invoking the fetchDataDictNames()
method
of this class. This event is dispatched when the asynchronous server call completes.
Tue Jun 12 2018, 02:12 PM Z