Paket | com.adobe.mosaic.om.interfaces |
Arabirim | public interface IMosaicNode |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
IMosaicNode
interface provides methods for retrieving information about nodes in the DOM.
Özellik | Tanımlayan: | ||
---|---|---|---|
childrenNodes : Array [salt okunur]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
nodeID : String [salt okunur]
Returns the ID of the node. | IMosaicNode | ||
nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
nodeName : String [salt okunur]
Returns the name of the node. | IMosaicNode | ||
nodeType : String [salt okunur]
Returns the type value of the node. | IMosaicNode | ||
parentNode : IMosaicNode [salt okunur]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
uniqueID : String [salt okunur]
Returns the generated unique ID of the node. | IMosaicNode |
Yöntem | Tanımlayan: | ||
---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode |
childrenNodes | özellik |
childrenNodes:Array
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Uygulama
public function get childrenNodes():Array
nodeID | özellik |
nodeLabel | özellik |
nodeLabel:String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Uygulama
public function get nodeLabel():String
public function set nodeLabel(value:String):void
nodeName | özellik |
nodeType | özellik |
nodeType:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Uygulama
public function get nodeType():String
parentNode | özellik |
parentNode:IMosaicNode
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Uygulama
public function get parentNode():IMosaicNode
uniqueID | özellik |
uniqueID:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get uniqueID():String
clone | () | yöntem |
public function clone():IMosaicNode
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
DöndürürIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | yöntem |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
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, 01:09 PM Z