| Paket | com.adobe.gravity.framework |
| Arabirim | public interface IBundle |
| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
| Özellik | Tanımlayan: | ||
|---|---|---|---|
| bundleId : int [salt okunur]
The identifier for this specific bundle. | IBundle | ||
| domain : String [salt okunur] If the bundle is shared, the name of the shared domain. | IBundle | ||
| location : String [salt okunur] The location from which the bundle was retrieved. | IBundle | ||
| parentDomain : String [salt okunur] If this bundle uses a shared parent domain, the name of the shared parent. | IBundle | ||
| properties : Object [salt okunur] The static properties of this bundle, as declared in the bundle descriptor. | IBundle | ||
| registeredServices : Array [salt okunur] An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically. | IBundle | ||
| servicesInUse : Array [salt okunur] An array of IServiceReference interfaces for all the services that are being used by this bundle. | IBundle | ||
| state : int [salt okunur] The state of the bundle. | IBundle | ||
| Yöntem | Tanımlayan: | ||
|---|---|---|---|
Start the bundle. | IBundle | ||
Stop the bundle. | IBundle | ||
Uninstall the bundle. | IBundle | ||
bundleId | özellik |
bundleId:int [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get bundleId():intdomain | özellik |
domain:String [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
If the bundle is shared, the name of the shared domain. Otherwise null.
Uygulama
public function get domain():Stringlocation | özellik |
location:String [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
The location from which the bundle was retrieved.
Uygulama
public function get location():StringparentDomain | özellik |
parentDomain:String [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
If this bundle uses a shared parent domain, the name of the shared parent. Otherwise null.
Uygulama
public function get parentDomain():Stringproperties | özellik |
properties:Object [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
The static properties of this bundle, as declared in the bundle descriptor.
Uygulama
public function get properties():ObjectregisteredServices | özellik |
registeredServices:Array [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get registeredServices():ArrayservicesInUse | özellik |
servicesInUse:Array [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that are being used by this bundle.
Uygulama
public function get servicesInUse():Arraystate | özellik |
state:int [salt okunur] | Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | AIR 1.1, Flash Player 9 |
The state of the bundle. Will be one of the constants in the BundleConstants class.
Uygulama
public function get state():intİlgili API Öğeleri
start | () | yöntem |
public function start():com.adobe.gravity.utility.async:IToken| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | 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.
Döndürürcom.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 | () | yöntem |
public function stop():com.adobe.gravity.utility.async:IToken| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | 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.
Döndürürcom.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 | () | yöntem |
public function uninstall():com.adobe.gravity.utility.async:IToken| Dil Sürümü: | ActionScript 3.0 |
| Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| Çalışma Zamanı Sürümleri: | 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.
Döndürürcom.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, 01:09 PM Z