包 | 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, 11:04 AM Z