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