Package freemarker.ext.jdom

Examples of freemarker.ext.jdom.NodeListModel$DocTypeOp

Note: There is a JDOM independent re-implementation of this class: {@link freemarker.ext.xml.NodeListModel freemarker.ext.xml.NodeListModel} @deprecated Use {@link freemarker.ext.dom.NodeModel} instead. @author Attila Szegedi @version $Id: NodeListModel.java,v 1.52.2.2 2006/11/14 10:39:58 szegedia Exp $


            dataModel.put("data", new MultiModel1());
        }
       
        else if (testName.equals("nodelistmodel")) {
            org.jdom.Document doc = new SAXBuilder().build(new InputSource(getClass().getResourceAsStream("test-xml.xml")));
            dataModel.put("doc", new NodeListModel(doc));
        }
       
        else if (testName.equals("test-stringbimethods")) {
            dataModel.put("multi", new TestBoolean());
        }
View Full Code Here


            dataModel.put("data", new MultiModel1());
        }
       
        else if (testName.equals("nodelistmodel")) {
            org.jdom.Document doc = new SAXBuilder().build(new InputSource(getClass().getResourceAsStream("test-xml.xml")));
            dataModel.put("doc", new NodeListModel(doc));
        }
       
        else if (testName.equals("string-builtins3")) {
            dataModel.put("multi", new TestBoolean());
        }
View Full Code Here

TOP

Related Classes of freemarker.ext.jdom.NodeListModel$DocTypeOp

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.