Pacote | com.adobe.icc.editors.managers |
Classe | public class DataDictionaryManager |
Herança | DataDictionaryManager ![]() ![]() |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | 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.
Propriedade | Definido por | ||
---|---|---|---|
![]() | constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | 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 um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | |
![]() |
Envia um evento para o fluxo de eventos. | EventDispatcher | |
Fetches the data dictionary names from the backend server. | DataDictionaryManager | ||
[estático]
Gets the single instance of the DataDictionaryManager class. | DataDictionaryManager | ||
![]() |
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | |
![]() |
Indica se um objeto tem uma propriedade especificada definida. | Object | |
![]() |
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | |
![]() |
Indica se a propriedade especificada existe e é enumerável. | Object | |
![]() |
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | |
![]() |
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | |
![]() |
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | |
![]() |
Retorna a representação de string do objeto especificado. | Object | |
![]() |
Retorna o valor primitivo do objeto especificado. | Object | |
![]() |
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
![]() | [transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | ||
![]() | [transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | ||
Dispatched when the list of data dictionary names have been successfully fetched from the server. | DataDictionaryManager |
dataDictNames | propriedade |
dataDictNames:IList
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
List of all data dictionary names of type non system.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento propertyChange
.
Implementação
public function get dataDictNames():IList
public function set dataDictNames(value:IList):void
fetchDataDictNames | () | método |
public function fetchDataDictNames():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Gets the single instance of the DataDictionaryManager class. This object manages the list of data dictionary names.
RetornaDataDictionaryManager — An object of type DataDictionaryManager.
|
fetchComplete | Evento |
flash.events.Event
propriedade Event.type =
flash.events.Event
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | 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.
Wed Jun 13 2018, 11:10 AM Z