Pakket | com.adobe.gravity.framework |
Klasse | public class BundleEvent |
Overerving | BundleEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bubbles : Boolean [alleen-lezen]
Geeft aan of een gebeurtenis een terugkoppelgebeurtenis is. | Event | ||
bundle : IBundle [alleen-lezen]
The bundle undergoing a lifecycle transition. | BundleEvent | ||
cancelable : Boolean [alleen-lezen]
Geeft aan of het gedrag dat aan deze gebeurtenis is gekoppeld, kan worden voorkomen. | Event | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
currentTarget : Object [alleen-lezen]
Het object dat het gebeurtenisobject actief verwerkt met een gebeurtenislistener. | Event | ||
eventPhase : uint [alleen-lezen]
De huidige fase in de gebeurtenisstroom. | Event | ||
target : Object [alleen-lezen]
Doel van gebeurtenis. | Event | ||
type : String [alleen-lezen]
Het type gebeurtenis. | Event |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | BundleEvent | ||
[overschrijven]
Duplicates an instance of an Event subclass. | BundleEvent | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeks die alle eigenschappen van het Event-object bevat. | Event | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
BUNDLE_INSTALLED : String = "bundleInstalled" [statisch] A bundle has been installed. | BundleEvent | ||
BUNDLE_RESOLVED : String = "bundleResolved" [statisch] A bundle has been resolved. | BundleEvent | ||
BUNDLE_RESOLVING : String = "bundleResolving" [statisch] A bundle is about to be resolved. | BundleEvent | ||
BUNDLE_STARTED : String = "bundleStarted" [statisch] A bundle has been started. | BundleEvent | ||
BUNDLE_STARTING : String = "bundleStarting" [statisch] A bundle is about to be started. | BundleEvent | ||
BUNDLE_STOPPED : String = "bundleStopped" [statisch] A bundle has been stopped. | BundleEvent | ||
BUNDLE_STOPPING : String = "bundleStopping" [statisch] A bundle is about to be stopped. | BundleEvent | ||
BUNDLE_UNINSTALLED : String = "bundleUninstalled" [statisch] A bundle has been uninstalled. | BundleEvent | ||
BUNDLE_UNINSTALLING : String = "bundleUninstalling" [statisch] A bundle is about to be uninstalled. | BundleEvent | ||
BUNDLE_UPDATED : String = "bundleUpdated" [statisch] A bundle has been updated. | BundleEvent | ||
BUNDLE_UPDATING : String = "bundleUpdating" [statisch] A bundle is about to be updated. | BundleEvent |
bundle | eigenschap |
BundleEvent | () | Constructor |
public function BundleEvent(type:String, bundle:IBundle)
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
Constructor.
Parameterstype:String — The type of lifecycle event.
| |
bundle:IBundle — The bundle involved.
|
clone | () | methode |
override public function clone():Event
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
Duplicates an instance of an Event subclass.
Returns a new Event object that is a copy of the original instance of the Event object.
You do not normally call clone()
; the EventDispatcher class calls it automatically
when you redispatch an event—that is, when you call dispatchEvent(event)
from a handler
that is handling event
.
The new Event object includes all the properties of the original.
When creating your own custom Event class, you must override the
inherited Event.clone()
method in order for it to duplicate the
properties of your custom class. If you do not set all the properties that you add
in your event subclass, those properties will not have the correct values when listeners
handle the redispatched event.
In this example, PingEvent
is a subclass of Event
and therefore implements its own version of clone()
.
class PingEvent extends Event { var URL:String; public override function clone():Event { return new PingEvent(type, bubbles, cancelable, URL); } }
Event — A new Event object that is identical to the original.
|
BUNDLE_INSTALLED | Constante |
public static const BUNDLE_INSTALLED:String = "bundleInstalled"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle has been installed.
BUNDLE_RESOLVED | Constante |
public static const BUNDLE_RESOLVED:String = "bundleResolved"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle has been resolved.
BUNDLE_RESOLVING | Constante |
public static const BUNDLE_RESOLVING:String = "bundleResolving"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle is about to be resolved.
BUNDLE_STARTED | Constante |
public static const BUNDLE_STARTED:String = "bundleStarted"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle has been started.
BUNDLE_STARTING | Constante |
public static const BUNDLE_STARTING:String = "bundleStarting"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle is about to be started.
BUNDLE_STOPPED | Constante |
public static const BUNDLE_STOPPED:String = "bundleStopped"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle has been stopped.
BUNDLE_STOPPING | Constante |
public static const BUNDLE_STOPPING:String = "bundleStopping"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle is about to be stopped.
BUNDLE_UNINSTALLED | Constante |
public static const BUNDLE_UNINSTALLED:String = "bundleUninstalled"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle has been uninstalled.
BUNDLE_UNINSTALLING | Constante |
public static const BUNDLE_UNINSTALLING:String = "bundleUninstalling"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle is about to be uninstalled.
BUNDLE_UPDATED | Constante |
public static const BUNDLE_UPDATED:String = "bundleUpdated"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle has been updated.
BUNDLE_UPDATING | Constante |
public static const BUNDLE_UPDATING:String = "bundleUpdating"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Runtimeversies: | AIR 1.1, Flash Player 9 |
A bundle is about to be updated.
Wed Jun 13 2018, 11:42 AM Z