パッケージ | 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 | プロパティ |
childrenNodes:Array
[読み取り専用] 言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
実装
public function get childrenNodes():Array
nodeID | プロパティ |
nodeLabel | プロパティ |
nodeLabel:String
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
ランタイムバージョン: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
実装
public function get nodeLabel():String
public function set nodeLabel(value:String):void
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, 10:34 AM Z