Paket | com.adobe.gravity.framework |
Arabirim | public interface IApplicationDomainManager |
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 |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Increment the reference count on the ApplicationDomain. | IApplicationDomainManager | ||
Create an ApplicationDomain with the given parent. | IApplicationDomainManager | ||
Decrement the reference count on the ApplicationDomain. | IApplicationDomainManager | ||
Find a tracked value object by ApplicationDomain and key object. | IApplicationDomainManager | ||
Return the ApplicationDomain for the provided name. | IApplicationDomainManager | ||
Return the child ApplicationDomains of the provided ApplicationDomain. | IApplicationDomainManager | ||
Return the name of the provided ApplicationDomain. | IApplicationDomainManager | ||
Return the parent ApplicationDomain for the provided ApplicationDomain, or null if it didn't have one. | IApplicationDomainManager | ||
Return the list of all top-level ApplicationDomains. | IApplicationDomainManager | ||
Register an existing ApplicationDomain. | IApplicationDomainManager | ||
Track a value object by ApplicationDomain and a key object, using weak references. | IApplicationDomainManager | ||
Stop tracking a value object by ApplicationDomain and key object. | IApplicationDomainManager |
addRef | () | yöntem |
public function addRef(applicationDomain:ApplicationDomain):void
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 |
Increment the reference count on the ApplicationDomain. Use the decRef method to decrement the count. When the count reaches 0, the ApplicationDomain will be removed from tracking. Note that if the ApplicationDomain becomes unreferenced, it will be garbage collected regardless of the reference count.
Parametreler
applicationDomain:ApplicationDomain — The ApplicationDomain for which to increment the reference count.
|
create | () | yöntem |
public function create(parent:ApplicationDomain, name:String):ApplicationDomain
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 |
Create an ApplicationDomain with the given parent.
Parametreler
parent:ApplicationDomain — The parent ApplicationDomain. May be null, in which case the ApplicationDomain is a top-level ApplicationDomain.
| |
name:String — A name to associate with the ApplicationDomain. Specify null for an anonymous ApplicationDomain.
|
ApplicationDomain — The new ApplicationDomain.
|
decRef | () | yöntem |
public function decRef(applicationDomain:ApplicationDomain):void
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 |
Decrement the reference count on the ApplicationDomain. Use the addRef method to decrement the count. When the count reaches 0, the ApplicationDomain will be removed from tracking. Note that if the ApplicationDomain becomes unreferenced, it will be garbage collected regardless of the reference count.
Parametreler
applicationDomain:ApplicationDomain — The ApplicationDomain for which to decrement the reference count.
|
findObject | () | yöntem |
public function findObject(applicationDomain:ApplicationDomain, keyObject:Object):*
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 |
Find a tracked value object by ApplicationDomain and key object.
Parametreler
applicationDomain:ApplicationDomain — The applicationDomain key.
| |
keyObject:Object — The key object.
|
* — The value object or null if not found.
|
getByName | () | yöntem |
public function getByName(name:String):ApplicationDomain
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 |
Return the ApplicationDomain for the provided name.
Parametreler
name:String — The name of the ApplicationDomain to retrieve.
|
ApplicationDomain — The ApplicationDomain with the specified name, or null if not present.
|
getChildren | () | yöntem |
public function getChildren(applicationDomain:ApplicationDomain):Array
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 |
Return the child ApplicationDomains of the provided ApplicationDomain.
Parametreler
applicationDomain:ApplicationDomain — The ApplicationDomain for which to retrieve the child ApplicationDomains.
|
Array — An Array containing the child ApplicationDomains.
|
getName | () | yöntem |
public function getName(applicationDomain:ApplicationDomain):String
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 |
Return the name of the provided ApplicationDomain.
Parametreler
applicationDomain:ApplicationDomain — The ApplicationDomain for which to retrieve the name.
|
String — The name provided when the domain was registered, or null if not present.
|
getParent | () | yöntem |
public function getParent(applicationDomain:ApplicationDomain):ApplicationDomain
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 |
Return the parent ApplicationDomain for the provided ApplicationDomain, or null if it didn't have one.
Parametreler
applicationDomain:ApplicationDomain — The ApplicationDomain for which to retrieve the parent.
|
ApplicationDomain — The parent ApplicationDomain.
|
getTopLevels | () | yöntem |
public function getTopLevels():Array
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 |
Return the list of all top-level ApplicationDomains.
DöndürürArray — An Array of ApplicationDomain objects.
|
register | () | yöntem |
public function register(domain:ApplicationDomain, parent:ApplicationDomain, name:String):void
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 |
Register an existing ApplicationDomain.
Parametreler
domain:ApplicationDomain — The ApplicationDomain to register.
| |
parent:ApplicationDomain — The parent ApplicationDomain for the domain parameter, if it has one. Specify null if the domain parameter is a top-level ApplicationDomain.
| |
name:String — A name to associate with the ApplicationDomain. The name must not already be registered, and must not be null.
|
trackObject | () | yöntem |
public function trackObject(applicationDomain:ApplicationDomain, keyObject:Object, valueObject:Object):void
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 |
Track a value object by ApplicationDomain and a key object, using weak references.
Parametreler
applicationDomain:ApplicationDomain — The applicationDomain key.
| |
keyObject:Object — The key object.
| |
valueObject:Object — The value object.
|
untrackObject | () | yöntem |
public function untrackObject(applicationDomain:ApplicationDomain, keyObject:Object):void
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 tracking a value object by ApplicationDomain and key object.
Parametreler
applicationDomain:ApplicationDomain — The applicationDomain key.
| |
keyObject:Object — The key object.
|
Tue Jun 12 2018, 01:09 PM Z