Package net.sf.saxon.om

Examples of net.sf.saxon.om.ExternalObjectModel.wrapDocument()


     * the required code is not on the class path
     */

    public XdmNode wrap(Object node) throws IllegalArgumentException {
        ExternalObjectModel model = config.findExternalObjectModel(node);
        DocumentInfo doc = model.wrapDocument(node, (baseURI == null ? null : baseURI.toString()), config);
        NodeInfo wrappedNode = model.wrapNode(doc, node);
        return (XdmNode)XdmItem.wrapItem(wrappedNode);
    }

//    public static void main(String[] args) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.