Pacote | com.adobe.fiber.services.wrapper |
Classe | public class AbstractServiceWrapper |
Herança | AbstractServiceWrapper EventDispatcher Object |
Implementações | IMXMLObject |
Subclasses | HTTPServiceWrapper, ManagedRemoteServiceWrapper, RemoteObjectServiceWrapper, WebServiceWrapper |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Propriedade | Definido por | ||
---|---|---|---|
channelSet : ChannelSet
Channel set of the wrapped service. | AbstractServiceWrapper | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
destination : String
Destination of the wrapped service. | AbstractServiceWrapper | ||
operations : Object
Operations of the wrapped service. | AbstractServiceWrapper | ||
serviceControl : AbstractService [somente leitura]
The wrapped service. | AbstractServiceWrapper | ||
showBusyCursor : Boolean
The showBusyCursor property of the wrapped service. | AbstractServiceWrapper |
Método | Definido por | ||
---|---|---|---|
AbstractServiceWrapper(target:IEventDispatcher = null)
Constructor. | AbstractServiceWrapper | ||
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 | ||
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 | ||
Called after the implementing object has been created and all
component properties specified on the MXML tag have been initialized. | AbstractServiceWrapper | ||
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 | |||
Fault events of wrapped services are propagated by the wrapper. | AbstractServiceWrapper | |||
Result events of wrapped services are propagated by the wrapper. | AbstractServiceWrapper |
channelSet | propriedade |
channelSet:ChannelSet
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Channel set of the wrapped service.
Implementação
public function get channelSet():ChannelSet
public function set channelSet(value:ChannelSet):void
Elementos da API relacionados
destination | propriedade |
destination:String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Destination of the wrapped service.
Implementação
public function get destination():String
public function set destination(value:String):void
Elementos da API relacionados
operations | propriedade |
operations:Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Operations of the wrapped service.
Implementação
public function get operations():Object
public function set operations(value:Object):void
Elementos da API relacionados
serviceControl | propriedade |
serviceControl:AbstractService
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The wrapped service. The service is implemented by service-specific subclasses.
Implementação
public function get serviceControl():AbstractService
showBusyCursor | propriedade |
showBusyCursor:Boolean
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The showBusyCursor
property of the wrapped service.
Implementação
public function get showBusyCursor():Boolean
public function set showBusyCursor(value:Boolean):void
AbstractServiceWrapper | () | Construtor |
public function AbstractServiceWrapper(target:IEventDispatcher = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
Parâmetrostarget:IEventDispatcher (default = null ) — The target object for dispatched events.
|
initialized | () | método |
public function initialized(document:Object, id:String):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Called after the implementing object has been created and all component properties specified on the MXML tag have been initialized.
Parâmetros
document:Object — The MXML document that created this object.
| |
id:String — The identifier used by document to refer
to this object.
If the object is a deep property on document ,
id is null.
|
fault | Evento |
mx.rpc.events.FaultEvent
propriedade FaultEvent.type =
mx.rpc.events.FaultEvent.FAULT
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Fault events of wrapped services are propagated by the wrapper.
The FAULT event type.The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | true, calling preventDefault() from the associated token's responder.fault method will prevent the service or operation from dispatching this event |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
fault | The Fault object that contains the details of what caused this event. |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
token | The token that represents the call to the method. Used in the asynchronous completion token pattern. |
result | Evento |
mx.rpc.events.ResultEvent
propriedade ResultEvent.type =
mx.rpc.events.ResultEvent.RESULT
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Result events of wrapped services are propagated by the wrapper.
The RESULT event type.The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | true, preventDefault() from the associated token's responder.result method will prevent the service or operation from dispatching this event |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
message | The Message associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
result | Result that the RPC call returns. |
token | The token that represents the indiviudal call to the method. Used in the asynchronous completion token pattern. |
Wed Jun 13 2018, 11:10 AM Z