| Paket | com.adobe.mosaic.om.interfaces |
| Schnittstelle | public interface IMosaicNode |
| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
IMosaicNode interface provides methods for retrieving information about nodes in the DOM.
| Eigenschaft | Definiert von | ||
|---|---|---|---|
| childrenNodes : Array [schreibgeschützt]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
| nodeID : String [schreibgeschützt]
Returns the ID of the node. | IMosaicNode | ||
| nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
| nodeName : String [schreibgeschützt]
Returns the name of the node. | IMosaicNode | ||
| nodeType : String [schreibgeschützt]
Returns the type value of the node. | IMosaicNode | ||
| parentNode : IMosaicNode [schreibgeschützt]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
| uniqueID : String [schreibgeschützt]
Returns the generated unique ID of the node. | IMosaicNode | ||
| Methode | Definiert von | ||
|---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode | ||
childrenNodes | Eigenschaft |
childrenNodes:Array [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implementierung
public function get childrenNodes():ArraynodeID | Eigenschaft |
nodeLabel | Eigenschaft |
nodeLabel:String| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implementierung
public function get nodeLabel():String public function set nodeLabel(value:String):voidnodeName | Eigenschaft |
nodeName:String [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Implementierung
public function get nodeName():StringnodeType | Eigenschaft |
nodeType:String [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implementierung
public function get nodeType():StringparentNode | Eigenschaft |
parentNode:IMosaicNode [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implementierung
public function get parentNode():IMosaicNodeuniqueID | Eigenschaft |
uniqueID:String [schreibgeschützt] | Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | 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.
Implementierung
public function get uniqueID():Stringclone | () | Methode |
public function clone():IMosaicNode| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
RückgabewerteIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | Methode |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void| Sprachversion: | ActionScript 3.0 |
| Produktversion: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Laufzeitversionen: | 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.
Parameter
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.
|
Tue Jun 12 2018, 10:04 AM Z