패키지 | 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:17 PM Z