Пакет | 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 | свойство |
nodeName:String
[только для чтения] Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Версии среды выполнения: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Реализация
public function get nodeName():String
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:34 AM Z