Pacchetto | lc.procmgmt.events |
Classe | public class SwfDataEvent |
Ereditarietà | SwfDataEvent Event Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
SwfDataEvent
event is used to pass initial data from
Workspace to the application built with Flex (Flex application). It also passes
the associated Task object that provides context info and access to the Workspace
Manager classes if the Flex application requires deeper integration with Workspace.
Communication between the Flex application you create and Workspace occurs when
events are dispatched to the sharedEvents.EventDispatcher
property on the
LoaderInfo
object of the Flex application you are creating. For example, to emit an event to
Workspace, the Flex application does the following:
systemManager.loaderInfo.sharedEvents.dispatchEvent(new Event(SwfAppEvent.SET_TASK));
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
bubbles : Boolean [sola lettura]
Indica se un evento è un evento di bubbling. | Event | ||
cancelable : Boolean [sola lettura]
Indica se il comportamento associato all'evento può essere impedito. | Event | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
currentTarget : Object [sola lettura]
L'oggetto che elabora attivamente l'oggetto Event con un listener di eventi. | Event | ||
data : String
The data contents for the task - usually XML that has been converted to a String. | SwfDataEvent | ||
eventPhase : uint [sola lettura]
La fase attuale del flusso di eventi. | Event | ||
target : Object [sola lettura]
Il target dell'evento. | Event | ||
task : lc.procmgmt.domain:Task
The Task object that is associated with the event. | SwfDataEvent | ||
type : String [sola lettura]
Il tipo di evento. | Event |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Constructor. | SwfDataEvent | ||
Duplica un'istanza di una sottoclasse Event. | Event | ||
Una funzione dell'utilità per l'implementazione del metodo toString() in classi Event ActionScript 3.0 personalizzate. | Event | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Verifica se sull'evento è stato chiamato il metodo preventDefault(). | Event | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Annulla il comportamento predefinito di un evento se tale comportamento può essere annullato. | Event | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Impedisce l'elaborazione di tutti i listener di eventi nel nodo corrente e in tutti i nodi successivi del flusso di eventi. | Event | ||
Impedisce l'elaborazione di tutti i listener di eventi nei nodi del flusso di eventi successivi a quello corrente. | Event | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce una stringa che contiene tutte le proprietà dell'oggetto Event. | Event | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costanti pubbliche
Costante | Definito da | ||
---|---|---|---|
SET_WORKSPACE_DATA : String = "setWorkspaceData" [statico]
The type property for a SwfDataEvent event. | SwfDataEvent |
Descrizione delle proprietà
data | proprietà |
public var data:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The data contents for the task - usually XML that has been converted to a String.
task | proprietà |
public var task:lc.procmgmt.domain:Task
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The Task
object that is associated with the event.
Descrizione della funzione di costruzione
SwfDataEvent | () | Funzione di costruzione |
public function SwfDataEvent(type:String, task:lc.procmgmt.domain:Task, data:String = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parametritype:String — Specifies the type of event.
| |
task:lc.procmgmt.domain:Task — Specifies the task that is associated with the event.
| |
data:String (default = null ) — Specifies the data for the event.
|
Descrizione delle costanti
SET_WORKSPACE_DATA | Costante |
public static const SET_WORKSPACE_DATA:String = "setWorkspaceData"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Document Services - Area di lavoro 9 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The type
property for a SwfDataEvent
event.
This event is set to always bubble.
The properties of the event object have the following values:
Property | Value |
---|---|
data | The data contents for the task. |
task | The instance of the selected task. |
Tue Jun 12 2018, 02:44 PM Z