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():Array
nodeID | 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():String
nodeLabel | 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):void
nodeName | 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():String
nodeType | 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():String
parentNode | 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():IMosaicNode
uniqueID | 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():String
clone | () | 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