Package net.sf.saxon.om

Examples of net.sf.saxon.om.NodeName


                }
            }

            // Careful, we're messing with the namespace bindings
            // Make sure the nameCode is right...
            NodeName nameCode = new NameOfNode(inode);
            String pfx = nameCode.getPrefix();
            String uri = nameCode.getURI();

            if (from.equals(uri)) {
                if ("".equals(to)) {
                    pfx = "";
                }

                nameCode = new FingerprintedQName(pfx,to,nameCode.getLocalPart());
            }

            matcher.addStartElement(nameCode, inode.getSchemaType(), newNS);
        }

        if (!"elements".equals(applyTo)) {
            XdmSequenceIterator iter = node.axisIterator(Axis.ATTRIBUTE);
            while (iter.hasNext()) {
                XdmNode attr = (XdmNode) iter.next();
                inode = attr.getUnderlyingNode();
                NodeName nameCode = new NameOfNode(inode);
                String pfx = nameCode.getPrefix();
                String uri = nameCode.getURI();

                if (from.equals(uri)) {
                    if ("".equals(pfx)) {
                        pfx = "_1";
                    }
                    nameCode = new FingerprintedQName(pfx,to,nameCode.getLocalPart());
                }
                matcher.addAttribute(nameCode, (SimpleType) inode.getSchemaType(), attr.getStringValue());
            }
        } else {
            matcher.addAttributes(node);
View Full Code Here

TOP

Related Classes of net.sf.saxon.om.NodeName

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.