ActionScript® 3.0 Referenzhandbuch für die Adobe® Flash®-Plattform
Home  |  Liste der Pakete und Klassen ausblenden |  Pakete  |  Klassen  |  Neue Funktionen  |  Stichwortverzeichnis  |  Anhänge  |  Warum auf Englisch?
Filter: Daten werden vom Server abgerufen...
Daten werden vom Server abgerufen...
com.adobe.gravity.framework 

IApplicationDomainManager  - AS3 ADEP Client-Komponente

Paketcom.adobe.gravity.framework
Schnittstellepublic interface IApplicationDomainManager

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: 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.



Öffentliche Methoden
 MethodeDefiniert von
  
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
Methodendetails

addRef

()Methode
public function addRef(applicationDomain:ApplicationDomain):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: 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.

Parameter

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

create

()Methode 
public function create(parent:ApplicationDomain, name:String):ApplicationDomain

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Create an ApplicationDomain with the given parent.

Parameter

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.

Rückgabewerte
ApplicationDomain — The new ApplicationDomain.

decRef

()Methode 
public function decRef(applicationDomain:ApplicationDomain):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: 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.

Parameter

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

findObject

()Methode 
public function findObject(applicationDomain:ApplicationDomain, keyObject:Object):*

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Find a tracked value object by ApplicationDomain and key object.

Parameter

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

Rückgabewerte
* — The value object or null if not found.

getByName

()Methode 
public function getByName(name:String):ApplicationDomain

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Return the ApplicationDomain for the provided name.

Parameter

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

Rückgabewerte
ApplicationDomain — The ApplicationDomain with the specified name, or null if not present.

getChildren

()Methode 
public function getChildren(applicationDomain:ApplicationDomain):Array

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Return the child ApplicationDomains of the provided ApplicationDomain.

Parameter

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

Rückgabewerte
Array — An Array containing the child ApplicationDomains.

getName

()Methode 
public function getName(applicationDomain:ApplicationDomain):String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Return the name of the provided ApplicationDomain.

Parameter

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

Rückgabewerte
String — The name provided when the domain was registered, or null if not present.

getParent

()Methode 
public function getParent(applicationDomain:ApplicationDomain):ApplicationDomain

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

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

Parameter

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

Rückgabewerte
ApplicationDomain — The parent ApplicationDomain.

getTopLevels

()Methode 
public function getTopLevels():Array

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Return the list of all top-level ApplicationDomains.

Rückgabewerte
Array — An Array of ApplicationDomain objects.

register

()Methode 
public function register(domain:ApplicationDomain, parent:ApplicationDomain, name:String):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Register an existing ApplicationDomain.

Parameter

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

()Methode 
public function trackObject(applicationDomain:ApplicationDomain, keyObject:Object, valueObject:Object):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

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

Parameter

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

untrackObject

()Methode 
public function untrackObject(applicationDomain:ApplicationDomain, keyObject:Object):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Client-Komponenten-Framework 10
Laufzeitversionen: AIR 1.1, Flash Player 9

Stop tracking a value object by ApplicationDomain and key object.

Parameter

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





[ X ]Warum auf Englisch?
Inhalt des ActionScript 3.0-Referenzhandbuchs wird in englischer Sprache angezeigt

Nicht alle Teile des ActionScript 3.0-Referenzhandbuchs wurden in alle Sprachen übersetzt. Wenn der Text zu einem Sprachelement nicht übersetzt wurde, wird er auf Englisch angezeigt. Zum Beispiel wurden die Informationen zur ga.controls.HelpBox-Klasse nicht in andere Sprachen übersetzt. In der deutschen Version des Referenzhandbuchs erscheint der Abschnitt zur ga.controls.HelpBox-Klasse deshalb auf Englisch.