| java.lang.Object org.openlaszlo.xml.internal.XMLCompiler
XMLCompiler | public class XMLCompiler (Code) | | Takes XML in various forms, and serializes it to actionscript, preserving all
heirarchy
author: Oliver Steele author: Max Carlson version: 1.0 |
compile | public static String compile(String x)(Code) | | Compile XML to actionscript
Parameters: x - XML string to compile Actionscript representation of XML |
compile | public static String compile(Element e)(Code) | | Compile XML to actionscript
Parameters: e - JDOM element to compile Actionscript representation of XML |
compile | public static String compile(Element e, Schema schema)(Code) | | Compile XML to actionscript
Parameters: e - JDOM element to compile Parameters: schema - Laszlo Schema to follow (what is var, function) Actionscript representation of XML |
compile | public static String compile(Element e, Schema schema, StringBuffer base)(Code) | | Compile XML to actionscript
Parameters: e - JDOM element to compile Parameters: schema - Laszlo Schema to follow (what is var, function) Parameters: base - Base of current element - used when called recursively Actionscript representation of XML |
compile | public static String compile(Element e, Schema schema, StringBuffer base, String varname)(Code) | | Compile XML to actionscript
Parameters: e - JDOM element to compile Parameters: schema - Laszlo Schema to follow (what is var, function) Parameters: base - Base of current element - used when called recursively Parameters: varname - Variable name to use instead of element name Actionscript representation of XML |
|
|