Pacchetto | com.adobe.mosaic.om.interfaces |
Interfaccia | public interface IMosaicNode |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
IMosaicNode
interface provides methods for retrieving information about nodes in the DOM.
Proprietà | Definito da | ||
---|---|---|---|
childrenNodes : Array [sola lettura]
Returns an array of child nodes (IMosaicNode objects) of the node. | IMosaicNode | ||
nodeID : String [sola lettura]
Returns the ID of the node. | IMosaicNode | ||
nodeLabel : String
Returns the label of the tile. | IMosaicNode | ||
nodeName : String [sola lettura]
Returns the name of the node. | IMosaicNode | ||
nodeType : String [sola lettura]
Returns the type value of the node. | IMosaicNode | ||
parentNode : IMosaicNode [sola lettura]
Returns the direct parent node of the current node within the application. | IMosaicNode | ||
uniqueID : String [sola lettura]
Returns the generated unique ID of the node. | IMosaicNode |
Metodo | Definito da | ||
---|---|---|---|
Clones an IMosaicNode. | IMosaicNode | ||
Resolves any reference elements that may be in the View, Panel, or Tile. | IMosaicNode |
childrenNodes | proprietà |
childrenNodes:Array
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns an array of child nodes (IMosaicNode objects) of the node.
Implementazione
public function get childrenNodes():Array
nodeID | proprietà |
nodeID:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the ID of the node.
Implementazione
public function get nodeID():String
nodeLabel | proprietà |
nodeLabel:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the label of the tile.
Implementazione
public function get nodeLabel():String
public function set nodeLabel(value:String):void
nodeName | proprietà |
nodeName:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the name of the node.
Implementazione
public function get nodeName():String
nodeType | proprietà |
nodeType:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the type value of the node. One of: "application", "view", "panel", or "tile".
Implementazione
public function get nodeType():String
parentNode | proprietà |
parentNode:IMosaicNode
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Returns the direct parent node of the current node within the application.
Implementazione
public function get parentNode():IMosaicNode
uniqueID | proprietà |
uniqueID:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni 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.
Implementazione
public function get uniqueID():String
clone | () | metodo |
public function clone():IMosaicNode
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni runtime: | AIR 2.6, Flash Player 10.2 |
Clones an IMosaicNode.
RestituisceIMosaicNode — clone The cloned IMosaicNode
|
resolveReferences | () | metodo |
public function resolveReferences(onSuccess:Function = null, onFailure:Function = null):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Adobe Digital Enterprise Platform Experience Services - Composite Application Framework 9.5 |
Versioni 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.
Parametri
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:44 PM Z