| Pakket | com.adobe.mosaic.om.interfaces |
| Interface | public interface IMosaicNode |
| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
IMosaicNode interface provides methods for retrieving information about nodes in the DOM.
| Eigenschap | Gedefinieerd door | ||
|---|---|---|---|
| childrenNodes : Array [alleen-lezen]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
| nodeID : String [alleen-lezen]
Returns the ID of the node. | IMosaicNode | ||
| nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
| nodeName : String [alleen-lezen]
Returns the name of the node. | IMosaicNode | ||
| nodeType : String [alleen-lezen]
Returns the type value of the node. | IMosaicNode | ||
| parentNode : IMosaicNode [alleen-lezen]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
| uniqueID : String [alleen-lezen]
Returns the generated unique ID of the node. | IMosaicNode | ||
| Methode | Gedefinieerd door | ||
|---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode | ||
childrenNodes | eigenschap |
childrenNodes:Array [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implementatie
public function get childrenNodes():ArraynodeID | eigenschap |
nodeLabel | eigenschap |
nodeLabel:String| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implementatie
public function get nodeLabel():String public function set nodeLabel(value:String):voidnodeName | eigenschap |
nodeType | eigenschap |
nodeType:String [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implementatie
public function get nodeType():StringparentNode | eigenschap |
parentNode:IMosaicNode [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implementatie
public function get parentNode():IMosaicNodeuniqueID | eigenschap |
uniqueID:String [alleen-lezen] | Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Returns the generated unique ID of the node. Unique ID is only constant during a single run of the applicaiton.
Implementatie
public function get uniqueID():Stringclone | () | methode |
public function clone():IMosaicNode| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
Geretourneerde waardeIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | methode |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void| Taalversie: | ActionScript 3.0 |
| Productversie: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Runtimeversies: | AIR 2.6, Flash Player 10.2 |
Resolves any reference elements that may be in the View, Panel, or Tile. The resulting ResolveReferencesEvent indicating success
or failure is returned in the callback function and also dispatched to the MessageListeners.
Parameters
onSuccess:Function (default = null) — A function that takes in one parameter of type ResolveReferencesEvent that is called when the view is saved successfully.
| |
onFailure:Function (default = null) — A function that takes in one parameter of type ResolveReferencesEvent that is called when the view save fails.
|
Wed Jun 13 2018, 11:42 AM Z