Pacote | com.adobe.ep.ux.content.handlers |
Classe | public class AssetHandlerRegistry |
Herança | AssetHandlerRegistry EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Método | Definido por | ||
---|---|---|---|
Constructor
| AssetHandlerRegistry | ||
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 | ||
[estático]
Singleton to get AssetHandlerRegistry. | AssetHandlerRegistry | ||
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 | ||
Checks whether a handler is registered for give assetType. | AssetHandlerRegistry | ||
returns the assetHandler corresponding to given assetType
| AssetHandlerRegistry | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Register an Asset Handler in this Singleton registry. | AssetHandlerRegistry | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Start the registry which calls the initialize function of individual handlers. | AssetHandlerRegistry | ||
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 | |||
assetActionComplete event thrown when AssetHandler has completed the assetAction taken by user through ui. | AssetHandlerRegistry | |||
assetActionsChanged event is thrown by the Handler when the selected item in results viewer change and it updates the correct handler selected assets. | AssetHandlerRegistry | |||
[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 | |||
Event thrown when handler is doing some processing and it wants Application to disable user interaction | AssetHandlerRegistry | |||
Event thrown when handler has done processing and it wants Application to re-enable user interaction | AssetHandlerRegistry | |||
launchEditor event is thrown by the Handler when handler has prepared the working asset to dispaly that in corresponding editor | AssetHandlerRegistry |
Constante | Definido por | ||
---|---|---|---|
ASSET_ACTIONS_CHANGED : String = "assetActionsChanged" [estático]
This constant specifies the event that the asset actions have changed
| AssetHandlerRegistry | ||
DISABLE_USER_INTERACTION_EVENT : String = "disableUserInteraction" [estático]
This constant specifies the event which disables the user interaction
| AssetHandlerRegistry | ||
ENABLE_USER_INTERACTION_EVENT : String = "enableUserInteraction" [estático]
This constant specifies the type of event which enables the user interaction
| AssetHandlerRegistry |
AssetHandlerRegistry | () | Construtor |
public function AssetHandlerRegistry()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Constructor
getInstance | () | método |
public static function getInstance():AssetHandlerRegistry
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Singleton to get AssetHandlerRegistry.
RetornaAssetHandlerRegistry — An instance of Asset Handler Registry to manage the registry of Asset Handlers
|
isRegistered | () | método |
public function isRegistered(assetType:String):Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Checks whether a handler is registered for give assetType.
Parâmetros
assetType:String — The type of Asset
|
Boolean — True if the asset handler is registered else return false
|
lookup | () | método |
public function lookup(assetType:String):IAssetHandler
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
returns the assetHandler corresponding to given assetType
Parâmetros
assetType:String — The type of asset for which the handler is required
|
IAssetHandler — The handler registered for given parameter
|
register | () | método |
public function register(handler:IAssetHandler):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Register an Asset Handler in this Singleton registry.
Parâmetros
handler:IAssetHandler — The Handler to register
|
start | () | método |
public function start():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Start the registry which calls the initialize function of individual handlers.
assetActionComplete | Evento |
com.adobe.ep.ux.content.event.AssetActionCompleteEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
assetActionComplete event thrown when AssetHandler has completed the assetAction taken by user through ui.
assetActionsChanged | Evento |
com.adobe.ep.ux.content.event.AssetActionsChangeEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
assetActionsChanged event is thrown by the Handler when the selected item in results viewer change and it updates the correct handler selected assets. It is redispatched by the AssetHandlerRegistry and finally handled by AssetManagerView
disableUserInteraction | Evento |
mx.events.FlexEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Event thrown when handler is doing some processing and it wants Application to disable user interaction
enableUserInteraction | Evento |
mx.events.FlexEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Event thrown when handler has done processing and it wants Application to re-enable user interaction
launchEditor | Evento |
mx.events.FlexEvent
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
launchEditor event is thrown by the Handler when handler has prepared the working asset to dispaly that in corresponding editor
ASSET_ACTIONS_CHANGED | Constante |
public static const ASSET_ACTIONS_CHANGED:String = "assetActionsChanged"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies the event that the asset actions have changed
DISABLE_USER_INTERACTION_EVENT | Constante |
public static const DISABLE_USER_INTERACTION_EVENT:String = "disableUserInteraction"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies the event which disables the user interaction
ENABLE_USER_INTERACTION_EVENT | Constante |
public static const ENABLE_USER_INTERACTION_EVENT:String = "enableUserInteraction"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies the type of event which enables the user interaction
Wed Jun 13 2018, 11:10 AM Z