包 | 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():int
domain | 属性 |
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():String
properties | 属性 |
registeredServices | 属性 |
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():Array
servicesInUse | 属性 |
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():Array
state | 属性 |
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, 11:04 AM Z