Пакет | 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 | свойство |
domain:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
If the bundle is shared, the name of the shared domain. Otherwise null.
Реализация
public function get domain():String
location | свойство |
location:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Версии среды выполнения: | AIR 1.1, Flash Player 9 |
The location from which the bundle was retrieved.
Реализация
public function get location():String
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 | свойство |
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():Object
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 | свойство |
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, 11:34 AM Z