Pacote | com.adobe.mosaic.om.interfaces |
Interface | public interface IMosaicNode |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
IMosaicNode
interface provides methods for retrieving information about nodes in the DOM.
Propriedade | Definido por | ||
---|---|---|---|
childrenNodes : Array [somente leitura]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
nodeID : String [somente leitura]
Returns the ID of the node. | IMosaicNode | ||
nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
nodeName : String [somente leitura]
Returns the name of the node. | IMosaicNode | ||
nodeType : String [somente leitura]
Returns the type value of the node. | IMosaicNode | ||
parentNode : IMosaicNode [somente leitura]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
uniqueID : String [somente leitura]
Returns the generated unique ID of the node. | IMosaicNode |
Método | Definido por | ||
---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode |
childrenNodes | propriedade |
childrenNodes:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implementação
public function get childrenNodes():Array
nodeID | propriedade |
nodeID:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the ID of the node.
Implementação
public function get nodeID():String
nodeLabel | propriedade |
nodeLabel:String
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implementação
public function get nodeLabel():String
public function set nodeLabel(value:String):void
nodeName | propriedade |
nodeName:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Implementação
public function get nodeName():String
nodeType | propriedade |
nodeType:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implementação
public function get nodeType():String
parentNode | propriedade |
parentNode:IMosaicNode
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implementação
public function get parentNode():IMosaicNode
uniqueID | propriedade |
uniqueID:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | 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.
Implementação
public function get uniqueID():String
clone | () | método |
public function clone():IMosaicNode
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
RetornaIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | método |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versões de runtime: | 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.
Parâmetros
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.
|
Wed Jun 13 2018, 11:10 AM Z