Paket | com.adobe.gravity.framework |
Klass | public class BundleEvent |
Arv | BundleEvent Event Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
Egenskap | Definieras med | ||
---|---|---|---|
bubbles : Boolean [skrivskyddad]
indikerar om händelsen är en bubblande händelse. | Event | ||
bundle : IBundle [skrivskyddad]
The bundle undergoing a lifecycle transition. | BundleEvent | ||
cancelable : Boolean [skrivskyddad]
Indikerar om beteendet som är kopplat till händelsen kan förhindras. | Event | ||
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
currentTarget : Object [skrivskyddad]
Det objekt som aktivt behandlar Event-objektet med en händelseavlyssnare. | Event | ||
eventPhase : uint [skrivskyddad]
Den nuvarande fasen i händelseflödet. | Event | ||
target : Object [skrivskyddad]
Händelsens mål. | Event | ||
type : String [skrivskyddad]
Händelsens typ. | Event |
Metod | Definieras med | ||
---|---|---|---|
Constructor. | BundleEvent | ||
[åsidosätt]
Duplicates an instance of an Event subclass. | BundleEvent | ||
Ett verktyg som används för att implementera metoden toString() i de anpassade klasserna ActionScript 3.0. | Event | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Kontrollerar om preventDefault()-metoden har anropats för händelsen. | Event | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Avbryter en händelses standardbeteende om det beteendet kan avbrytas. | Event | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Förhindrar behandling av händelsehanterare i den aktuella noden och alla noder som följer den aktuella noden i händelseflödet. | Event | ||
Förhindrar behandling av händelsehanterare i noder som följer den aktuella noden i händelseflödet. | Event | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar en sträng som innehåller alla egenskaper i Event-objektet. | Event | ||
Returnerar det angivna objektets primitiva värde. | Object |
Konstant | Definieras med | ||
---|---|---|---|
BUNDLE_INSTALLED : String = "bundleInstalled" [statisk] A bundle has been installed. | BundleEvent | ||
BUNDLE_RESOLVED : String = "bundleResolved" [statisk] A bundle has been resolved. | BundleEvent | ||
BUNDLE_RESOLVING : String = "bundleResolving" [statisk] A bundle is about to be resolved. | BundleEvent | ||
BUNDLE_STARTED : String = "bundleStarted" [statisk] A bundle has been started. | BundleEvent | ||
BUNDLE_STARTING : String = "bundleStarting" [statisk] A bundle is about to be started. | BundleEvent | ||
BUNDLE_STOPPED : String = "bundleStopped" [statisk] A bundle has been stopped. | BundleEvent | ||
BUNDLE_STOPPING : String = "bundleStopping" [statisk] A bundle is about to be stopped. | BundleEvent | ||
BUNDLE_UNINSTALLED : String = "bundleUninstalled" [statisk] A bundle has been uninstalled. | BundleEvent | ||
BUNDLE_UNINSTALLING : String = "bundleUninstalling" [statisk] A bundle is about to be uninstalled. | BundleEvent | ||
BUNDLE_UPDATED : String = "bundleUpdated" [statisk] A bundle has been updated. | BundleEvent | ||
BUNDLE_UPDATING : String = "bundleUpdating" [statisk] A bundle is about to be updated. | BundleEvent |
bundle | egenskap |
bundle:IBundle
[skrivskyddad] Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
The bundle undergoing a lifecycle transition.
Implementering
public function get bundle():IBundle
BundleEvent | () | Konstruktor |
public function BundleEvent(type:String, bundle:IBundle)
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
Constructor.
Parametrartype:String — The type of lifecycle event.
| |
bundle:IBundle — The bundle involved.
|
clone | () | metod |
override public function clone():Event
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | 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 | Konstant |
public static const BUNDLE_INSTALLED:String = "bundleInstalled"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle has been installed.
BUNDLE_RESOLVED | Konstant |
public static const BUNDLE_RESOLVED:String = "bundleResolved"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle has been resolved.
BUNDLE_RESOLVING | Konstant |
public static const BUNDLE_RESOLVING:String = "bundleResolving"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle is about to be resolved.
BUNDLE_STARTED | Konstant |
public static const BUNDLE_STARTED:String = "bundleStarted"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle has been started.
BUNDLE_STARTING | Konstant |
public static const BUNDLE_STARTING:String = "bundleStarting"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle is about to be started.
BUNDLE_STOPPED | Konstant |
public static const BUNDLE_STOPPED:String = "bundleStopped"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle has been stopped.
BUNDLE_STOPPING | Konstant |
public static const BUNDLE_STOPPING:String = "bundleStopping"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle is about to be stopped.
BUNDLE_UNINSTALLED | Konstant |
public static const BUNDLE_UNINSTALLED:String = "bundleUninstalled"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle has been uninstalled.
BUNDLE_UNINSTALLING | Konstant |
public static const BUNDLE_UNINSTALLING:String = "bundleUninstalling"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle is about to be uninstalled.
BUNDLE_UPDATED | Konstant |
public static const BUNDLE_UPDATED:String = "bundleUpdated"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle has been updated.
BUNDLE_UPDATING | Konstant |
public static const BUNDLE_UPDATING:String = "bundleUpdating"
Språkversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Körningsmiljöversioner: | AIR 1.1, Flash Player 9 |
A bundle is about to be updated.
Tue Jun 12 2018, 01:40 PM Z