| Package | com.adobe.mosaic.om.interfaces |
| Interface | public interface IMosaicNode |
| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
IMosaicNode interface provides methods for retrieving information about nodes in the DOM.
| Propriété | Défini par | ||
|---|---|---|---|
| childrenNodes : Array [lecture seule]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
| nodeID : String [lecture seule]
Returns the ID of the node. | IMosaicNode | ||
| nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
| nodeName : String [lecture seule]
Returns the name of the node. | IMosaicNode | ||
| nodeType : String [lecture seule]
Returns the type value of the node. | IMosaicNode | ||
| parentNode : IMosaicNode [lecture seule]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
| uniqueID : String [lecture seule]
Returns the generated unique ID of the node. | IMosaicNode | ||
| Méthode | Défini par | ||
|---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode | ||
childrenNodes | propriété |
childrenNodes:Array [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implémentation
public function get childrenNodes():ArraynodeID | propriété |
nodeID:String [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the ID of the node.
Implémentation
public function get nodeID():StringnodeLabel | propriété |
nodeLabel:String| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implémentation
public function get nodeLabel():String public function set nodeLabel(value:String):voidnodeName | propriété |
nodeName:String [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Implémentation
public function get nodeName():StringnodeType | propriété |
nodeType:String [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implémentation
public function get nodeType():StringparentNode | propriété |
parentNode:IMosaicNode [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implémentation
public function get parentNode():IMosaicNodeuniqueID | propriété |
uniqueID:String [lecture seule] | Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | 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.
Implémentation
public function get uniqueID():Stringclone | () | méthode |
public function clone():IMosaicNode| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
Valeur renvoyéeIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | méthode |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void| Version du langage: | ActionScript 3.0 |
| Version du produit: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
| Versions du moteur d’exécution: | 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.
Paramètres
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, 09:30 AM Z