套件 | com.adobe.mosaic.om.interfaces |
介面 | public interface IMosaicNode |
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
IMosaicNode
interface provides methods for retrieving information about nodes in the DOM.
公用屬性
屬性 | 定義自 | ||
---|---|---|---|
childrenNodes : Array [唯讀]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
nodeID : String [唯讀]
Returns the ID of the node. | IMosaicNode | ||
nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
nodeName : String [唯讀]
Returns the name of the node. | IMosaicNode | ||
nodeType : String [唯讀]
Returns the type value of the node. | IMosaicNode | ||
parentNode : IMosaicNode [唯讀]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
uniqueID : String [唯讀]
Returns the generated unique ID of the node. | IMosaicNode |
公用方法
方法 | 定義自 | ||
---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode |
屬性詳細資訊
childrenNodes | 屬性 |
nodeID | 屬性 |
nodeLabel | 屬性 |
nodeName | 屬性 |
nodeType | 屬性 |
nodeType:String
[唯讀] 語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
實作
public function get nodeType():String
parentNode | 屬性 |
parentNode:IMosaicNode
[唯讀] 語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
實作
public function get parentNode():IMosaicNode
uniqueID | 屬性 |
uniqueID:String
[唯讀] 語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
執行階段版本: | 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.
實作
public function get uniqueID():String
方法詳細資訊
clone | () | 方法 |
public function clone():IMosaicNode
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
執行階段版本: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
傳回值IMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | 方法 |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
語言版本: | ActionScript 3.0 |
產品版本: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
執行階段版本: | 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.
參數
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, 03:47 PM Z