Pakiet | com.adobe.mosaic.om.interfaces |
Interfejs | public interface IMosaicNode |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
IMosaicNode
interface provides methods for retrieving information about nodes in the DOM.
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
childrenNodes : Array [tylko do odczytu]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
nodeID : String [tylko do odczytu]
Returns the ID of the node. | IMosaicNode | ||
nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
nodeName : String [tylko do odczytu]
Returns the name of the node. | IMosaicNode | ||
nodeType : String [tylko do odczytu]
Returns the type value of the node. | IMosaicNode | ||
parentNode : IMosaicNode [tylko do odczytu]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
uniqueID : String [tylko do odczytu]
Returns the generated unique ID of the node. | IMosaicNode |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode |
childrenNodes | właściwość |
childrenNodes:Array
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implementacja
public function get childrenNodes():Array
nodeID | właściwość |
nodeID:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Returns the ID of the node.
Implementacja
public function get nodeID():String
nodeLabel | właściwość |
nodeLabel:String
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implementacja
public function get nodeLabel():String
public function set nodeLabel(value:String):void
nodeName | właściwość |
nodeName:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Implementacja
public function get nodeName():String
nodeType | właściwość |
nodeType:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implementacja
public function get nodeType():String
parentNode | właściwość |
parentNode:IMosaicNode
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implementacja
public function get parentNode():IMosaicNode
uniqueID | właściwość |
uniqueID:String
[tylko do odczytu] Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | 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.
Implementacja
public function get uniqueID():String
clone | () | metoda |
public function clone():IMosaicNode
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
ZwracaIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | metoda |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Wersje środowiska wykonawczego: | 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.
Parametry
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, 12:06 PM Z