Paquete | com.adobe.mosaic.om.interfaces |
Interfaz | public interface IMosaicNode |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
IMosaicNode
interface provides methods for retrieving information about nodes in the DOM.
Propiedad | Definido por | ||
---|---|---|---|
childrenNodes : Array [solo lectura]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
nodeID : String [solo lectura]
Returns the ID of the node. | IMosaicNode | ||
nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
nodeName : String [solo lectura]
Returns the name of the node. | IMosaicNode | ||
nodeType : String [solo lectura]
Returns the type value of the node. | IMosaicNode | ||
parentNode : IMosaicNode [solo lectura]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
uniqueID : String [solo lectura]
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 | propiedad |
childrenNodes:Array
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implementación
public function get childrenNodes():Array
nodeID | propiedad |
nodeID:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the ID of the node.
Implementación
public function get nodeID():String
nodeLabel | propiedad |
nodeLabel:String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implementación
public function get nodeLabel():String
public function set nodeLabel(value:String):void
nodeName | propiedad |
nodeName:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Implementación
public function get nodeName():String
nodeType | propiedad |
nodeType:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implementación
public function get nodeType():String
parentNode | propiedad |
parentNode:IMosaicNode
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implementación
public function get parentNode():IMosaicNode
uniqueID | propiedad |
uniqueID:String
[solo lectura] Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | 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.
Implementación
public function get uniqueID():String
clone | () | método |
public function clone():IMosaicNode
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
Valor devueltoIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | método |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versiones de motor de ejecución: | 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.
|
Tue Jun 12 2018, 02:12 PM Z