| Paket | com.adobe.gravity.framework |
| Schnittstelle | public interface IBundle |
| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
| Eigenschaft | Definiert von | ||
|---|---|---|---|
| bundleId : int [schreibgeschützt]
The identifier for this specific bundle. | IBundle | ||
| domain : String [schreibgeschützt] If the bundle is shared, the name of the shared domain. | IBundle | ||
| location : String [schreibgeschützt] The location from which the bundle was retrieved. | IBundle | ||
| parentDomain : String [schreibgeschützt] If this bundle uses a shared parent domain, the name of the shared parent. | IBundle | ||
| properties : Object [schreibgeschützt] The static properties of this bundle, as declared in the bundle descriptor. | IBundle | ||
| registeredServices : Array [schreibgeschützt] An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically. | IBundle | ||
| servicesInUse : Array [schreibgeschützt] An array of IServiceReference interfaces for all the services that are being used by this bundle. | IBundle | ||
| state : int [schreibgeschützt] The state of the bundle. | IBundle | ||
| Methode | Definiert von | ||
|---|---|---|---|
Start the bundle. | IBundle | ||
Stop the bundle. | IBundle | ||
Uninstall the bundle. | IBundle | ||
bundleId | Eigenschaft |
bundleId:int [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
The identifier for this specific bundle. This is assigned at runtime by the framework and may be different on each run.
Implementierung
public function get bundleId():intdomain | Eigenschaft |
domain:String [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
If the bundle is shared, the name of the shared domain. Otherwise null.
Implementierung
public function get domain():Stringlocation | Eigenschaft |
location:String [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
The location from which the bundle was retrieved.
Implementierung
public function get location():StringparentDomain | Eigenschaft |
parentDomain:String [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
If this bundle uses a shared parent domain, the name of the shared parent. Otherwise null.
Implementierung
public function get parentDomain():Stringproperties | Eigenschaft |
properties:Object [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
The static properties of this bundle, as declared in the bundle descriptor.
Implementierung
public function get properties():ObjectregisteredServices | Eigenschaft |
registeredServices:Array [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically.
Implementierung
public function get registeredServices():ArrayservicesInUse | Eigenschaft |
servicesInUse:Array [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that are being used by this bundle.
Implementierung
public function get servicesInUse():Arraystate | Eigenschaft |
state:int [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
The state of the bundle. Will be one of the constants in the BundleConstants class.
Implementierung
public function get state():intVerwandte API-Elemente
start | () | Methode |
public function start():com.adobe.gravity.utility.async:IToken| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
Start the bundle. The bundle will not immediately be started on return; the returned token can be used to add success or failure handlers to be executed when the bundle has successfully started or to handle a fault during the bundle start process.
Rückgabewertecom.adobe.gravity.utility.async:IToken — A token that success or failure handlers may be added to. Note that null will never be returned from this call.
|
stop | () | Methode |
public function stop():com.adobe.gravity.utility.async:IToken| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
Stop the bundle. The bundle will not immediately be stopped on return; the returned token can be used to add success or failure handlers to be executed when the bundle has successfully stopped or to handle a fault during the bundle stop process.
Rückgabewertecom.adobe.gravity.utility.async:IToken — A token that success or failure handlers may be added to. Note that null will never be returned from this call.
|
uninstall | () | Methode |
public function uninstall():com.adobe.gravity.utility.async:IToken| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10 |
| Laufzeitversionen: | AIR 1.1, Flash Player 9 |
Uninstall the bundle. The bundle will not immediately be uninstalled on return; the returned token can be used to add success and failure handlers to be executed when the bundle has successfully been uninstalled or to handle a fault during the bundle uninstall process.
Rückgabewertecom.adobe.gravity.utility.async:IToken — A token that success or failure handlers may be added to. Note that null will never be returned from this call.
|
Tue Jun 12 2018, 10:04 AM Z