Adobe® Flash® Platform 用 ActionScript® 3.0 リファレンスガイド
ホーム  |  パッケージおよびクラスリストの非表示 |  パッケージ  |  クラス  |  新機能  |  索引  |  付録  |  英語で表示される理由
フィルター: サーバーからデータを取得しています...
サーバーからデータを取得しています...
com.adobe.gravity.framework 

IApplicationDomainManager  - AS3 ADEP Client Component

パッケージcom.adobe.gravity.framework
インターフェイスpublic interface IApplicationDomainManager

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

The IApplicationDomainManager interface provides a mechanism to create ApplicationDomains such that they can be tracked, primarily for debugging purposes. Note that only ApplicationDomain objects that were returned from IApplicationDomainManager can be passed back in, since ApplicationDomain object are not necessarily persistent in the runtime (the runtime may create them as needed). Which is to say that ApplicationDomain.currentDomain may not return the same ApplicationDomain object that code was loaded into.



パブリックメソッド
 メソッド定義元
  
addRef(applicationDomain:ApplicationDomain):void
Increment the reference count on the ApplicationDomain.
IApplicationDomainManager
  
Create an ApplicationDomain with the given parent.
IApplicationDomainManager
  
decRef(applicationDomain:ApplicationDomain):void
Decrement the reference count on the ApplicationDomain.
IApplicationDomainManager
  
findObject(applicationDomain:ApplicationDomain, keyObject:Object):*
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
  
getName(applicationDomain:ApplicationDomain):String
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
  
trackObject(applicationDomain:ApplicationDomain, keyObject:Object, valueObject:Object):void
Track a value object by ApplicationDomain and a key object, using weak references.
IApplicationDomainManager
  
untrackObject(applicationDomain:ApplicationDomain, keyObject:Object):void
Stop tracking a value object by ApplicationDomain and key object.
IApplicationDomainManager
メソッドの詳細

addRef

()メソッド
public function addRef(applicationDomain:ApplicationDomain):void

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: 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.

パラメーター

applicationDomain:ApplicationDomain — The ApplicationDomain for which to increment the reference count.

create

()メソッド 
public function create(parent:ApplicationDomain, name:String):ApplicationDomain

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Create an ApplicationDomain with the given parent.

パラメーター

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

()メソッド 
public function decRef(applicationDomain:ApplicationDomain):void

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: 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.

パラメーター

applicationDomain:ApplicationDomain — The ApplicationDomain for which to decrement the reference count.

findObject

()メソッド 
public function findObject(applicationDomain:ApplicationDomain, keyObject:Object):*

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Find a tracked value object by ApplicationDomain and key object.

パラメーター

applicationDomain:ApplicationDomain — The applicationDomain key.
 
keyObject:Object — The key object.

戻り値
* — The value object or null if not found.

getByName

()メソッド 
public function getByName(name:String):ApplicationDomain

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Return the ApplicationDomain for the provided name.

パラメーター

name:String — The name of the ApplicationDomain to retrieve.

戻り値
ApplicationDomain — The ApplicationDomain with the specified name, or null if not present.

getChildren

()メソッド 
public function getChildren(applicationDomain:ApplicationDomain):Array

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Return the child ApplicationDomains of the provided ApplicationDomain.

パラメーター

applicationDomain:ApplicationDomain — The ApplicationDomain for which to retrieve the child ApplicationDomains.

戻り値
Array — An Array containing the child ApplicationDomains.

getName

()メソッド 
public function getName(applicationDomain:ApplicationDomain):String

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Return the name of the provided ApplicationDomain.

パラメーター

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

()メソッド 
public function getParent(applicationDomain:ApplicationDomain):ApplicationDomain

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Return the parent ApplicationDomain for the provided ApplicationDomain, or null if it didn't have one.

パラメーター

applicationDomain:ApplicationDomain — The ApplicationDomain for which to retrieve the parent.

戻り値
ApplicationDomain — The parent ApplicationDomain.

getTopLevels

()メソッド 
public function getTopLevels():Array

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Return the list of all top-level ApplicationDomains.

戻り値
Array — An Array of ApplicationDomain objects.

register

()メソッド 
public function register(domain:ApplicationDomain, parent:ApplicationDomain, name:String):void

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Register an existing ApplicationDomain.

パラメーター

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

()メソッド 
public function trackObject(applicationDomain:ApplicationDomain, keyObject:Object, valueObject:Object):void

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Track a value object by ApplicationDomain and a key object, using weak references.

パラメーター

applicationDomain:ApplicationDomain — The applicationDomain key.
 
keyObject:Object — The key object.
 
valueObject:Object — The value object.

untrackObject

()メソッド 
public function untrackObject(applicationDomain:ApplicationDomain, keyObject:Object):void

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
ランタイムバージョン: AIR 1.1, Flash Player 9

Stop tracking a value object by ApplicationDomain and key object.

パラメーター

applicationDomain:ApplicationDomain — The applicationDomain key.
 
keyObject:Object — The key object.





[ X ]英語で表示される理由
ActionScript 3.0 リファレンスガイドのコンテンツが英語で表示されます。

ActionScript 3.0 リファレンスガイドのすべての部分がすべての言語に翻訳されているわけではありません。言語エレメントが翻訳されていない場合、そのエレメントは英語で表示されます。例えば、ga.controls.HelpBox クラスはどの言語にも訳されていません。このため、リファレンスガイドの日本語バージョンでは、ga.controls.HelpBox クラスは英語で表示されます。