| Pakket | com.adobe.gravity.framework |
| Interface | public interface IBundle |
| 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 | ||
|---|---|---|---|
| bundleId : int [alleen-lezen]
The identifier for this specific bundle. | IBundle | ||
| domain : String [alleen-lezen] If the bundle is shared, the name of the shared domain. | IBundle | ||
| location : String [alleen-lezen] The location from which the bundle was retrieved. | IBundle | ||
| parentDomain : String [alleen-lezen] If this bundle uses a shared parent domain, the name of the shared parent. | IBundle | ||
| properties : Object [alleen-lezen] The static properties of this bundle, as declared in the bundle descriptor. | IBundle | ||
| registeredServices : Array [alleen-lezen] An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically. | IBundle | ||
| servicesInUse : Array [alleen-lezen] An array of IServiceReference interfaces for all the services that are being used by this bundle. | IBundle | ||
| state : int [alleen-lezen] The state of the bundle. | IBundle | ||
| Methode | Gedefinieerd door | ||
|---|---|---|---|
Start the bundle. | IBundle | ||
Stop the bundle. | IBundle | ||
Uninstall the bundle. | IBundle | ||
bundleId | eigenschap |
bundleId:int [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | 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.
Implementatie
public function get bundleId():intdomain | eigenschap |
domain:String [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | AIR 1.1, Flash Player 9 |
If the bundle is shared, the name of the shared domain. Otherwise null.
Implementatie
public function get domain():Stringlocation | eigenschap |
location:String [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | AIR 1.1, Flash Player 9 |
The location from which the bundle was retrieved.
Implementatie
public function get location():StringparentDomain | eigenschap |
parentDomain:String [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | AIR 1.1, Flash Player 9 |
If this bundle uses a shared parent domain, the name of the shared parent. Otherwise null.
Implementatie
public function get parentDomain():Stringproperties | eigenschap |
properties:Object [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | AIR 1.1, Flash Player 9 |
The static properties of this bundle, as declared in the bundle descriptor.
Implementatie
public function get properties():ObjectregisteredServices | eigenschap |
registeredServices:Array [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | 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.
Implementatie
public function get registeredServices():ArrayservicesInUse | eigenschap |
servicesInUse:Array [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that are being used by this bundle.
Implementatie
public function get servicesInUse():Arraystate | eigenschap |
state:int [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | AIR 1.1, Flash Player 9 |
The state of the bundle. Will be one of the constants in the BundleConstants class.
Implementatie
public function get state():intVerwante API-elementen
start | () | methode |
public function start():com.adobe.gravity.utility.async:IToken| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | 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.
Geretourneerde waardecom.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| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | 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.
Geretourneerde waardecom.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| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Runtimeversies: | 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.
Geretourneerde waardecom.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.
|
Wed Jun 13 2018, 11:42 AM Z