Packagemx.rpc.xml
Classpublic class SimpleXMLDecoder
InheritanceSimpleXMLDecoder Inheritance Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The SimpleXMLDecoder class deserialize XML into a graph of ActionScript objects. Use this class when no schema information is available.



Public Methods
 MethodDefined By
  
decodeXML(dataNode:XMLNode):Object
Converts a tree of XMLNodes into a tree of ActionScript Objects.
SimpleXMLDecoder
  
getLocalName(xmlNode:XMLNode):String
[static] Returns the local name of an XMLNode.
SimpleXMLDecoder
Method Detail
decodeXML()method
public function decodeXML(dataNode:XMLNode):Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Converts a tree of XMLNodes into a tree of ActionScript Objects.

Parameters

dataNode:XMLNode — An XMLNode to be converted into a tree of ActionScript Objects.

Returns
Object — A tree of ActionScript Objects.
getLocalName()method 
public static function getLocalName(xmlNode:XMLNode):String

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Returns the local name of an XMLNode.

Parameters

xmlNode:XMLNode — The XMLNode.

Returns
String — The local name of an XMLNode.