Package net.sf.lapg.templates.model.xml.XmlTree

Examples of net.sf.lapg.templates.model.xml.XmlTree.TextSource


import net.sf.lapg.templates.model.xml.XmlTree.TextSource;

public class XmlModel {

  public static XmlNode load(String content) {
    XmlTree<XmlNode> tree = XmlTree.parse(new TextSource(".xml", content.toCharArray(), 1));
    return tree.getRoot();
  }
View Full Code Here

TOP

Related Classes of net.sf.lapg.templates.model.xml.XmlTree.TextSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.