| パッケージ | com.adobe.gravity.framework |
| インターフェイス | public interface IBundle |
| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | AIR 1.1, Flash Player 9 |
| プロパティ | 定義元 | ||
|---|---|---|---|
| bundleId : int [読み取り専用]
The identifier for this specific bundle. | IBundle | ||
| domain : String [読み取り専用] If the bundle is shared, the name of the shared domain. | IBundle | ||
| location : String [読み取り専用] The location from which the bundle was retrieved. | IBundle | ||
| parentDomain : String [読み取り専用] If this bundle uses a shared parent domain, the name of the shared parent. | IBundle | ||
| properties : Object [読み取り専用] The static properties of this bundle, as declared in the bundle descriptor. | IBundle | ||
| registeredServices : Array [読み取り専用] An array of IServiceReference interfaces for all the services that have been registered by this bundle, both declaratively and programmatically. | IBundle | ||
| servicesInUse : Array [読み取り専用] An array of IServiceReference interfaces for all the services that are being used by this bundle. | IBundle | ||
| state : int [読み取り専用] The state of the bundle. | IBundle | ||
| メソッド | 定義元 | ||
|---|---|---|---|
Start the bundle. | IBundle | ||
Stop the bundle. | IBundle | ||
Uninstall the bundle. | IBundle | ||
bundleId | プロパティ |
bundleId:int [読み取り専用] | 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | 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.
実装
public function get bundleId():intdomain | プロパティ |
location | プロパティ |
parentDomain | プロパティ |
parentDomain:String [読み取り専用] | 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | AIR 1.1, Flash Player 9 |
If this bundle uses a shared parent domain, the name of the shared parent. Otherwise null.
実装
public function get parentDomain():Stringproperties | プロパティ |
properties:Object [読み取り専用] | 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | AIR 1.1, Flash Player 9 |
The static properties of this bundle, as declared in the bundle descriptor.
実装
public function get properties():ObjectregisteredServices | プロパティ |
registeredServices:Array [読み取り専用] | 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | 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.
実装
public function get registeredServices():ArrayservicesInUse | プロパティ |
servicesInUse:Array [読み取り専用] | 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | AIR 1.1, Flash Player 9 |
An array of IServiceReference interfaces for all the services that are being used by this bundle.
実装
public function get servicesInUse():Arraystate | プロパティ |
state:int [読み取り専用] | 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | AIR 1.1, Flash Player 9 |
The state of the bundle. Will be one of the constants in the BundleConstants class.
実装
public function get state():int関連する API エレメント
start | () | メソッド |
public function start():com.adobe.gravity.utility.async:IToken| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | 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.
戻り値com.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 | () | メソッド |
public function stop():com.adobe.gravity.utility.async:IToken| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | 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.
戻り値com.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 | () | メソッド |
public function uninstall():com.adobe.gravity.utility.async:IToken| 言語バージョン: | ActionScript 3.0 |
| 製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
| ランタイムバージョン: | 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.
戻り値com.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:34 AM Z