| Package | org.springextensions.actionscript.ioc.config.impl.xml.parser |
| Interface | public interface INodeParser |
| Implementors | AbstractNodeParser |
| Method | Defined By | ||
|---|---|---|---|
addNodeNameAlias(alias:String):void
Will add an alias that this node parser will react upon. | INodeParser | ||
canParse(node:XML):Boolean
Determines if the given node can be parsed. | INodeParser | ||
getNodeNames():Vector.<String>
Return an array containing the node names this parser can parse
| INodeParser | ||
parse(node:XML):*
Will parse the given node. | INodeParser | ||
| addNodeNameAlias | () | method |
public function addNodeNameAlias(alias:String):voidWill add an alias that this node parser will react upon. It has direct influence on the result of the canParse method.
Parameters
alias:String — Alternative nodename that can be parsed by this parser
|
See also
| canParse | () | method |
public function canParse(node:XML):BooleanDetermines if the given node can be parsed.
Parameters
node:XML — The node to be checked.
|
Boolean — true if this implementation can parse the given node.
|
| getNodeNames | () | method |
public function getNodeNames():Vector.<String>Return an array containing the node names this parser can parse
ReturnsVector.<String> |
| parse | () | method |
public function parse(node:XML):*Will parse the given node. The type of the result depends on the implementation of the node parser.
Parameters
node:XML — The node that will be parsed
|
* — the parsed node
|