Package dk.brics.xmlgraph

Examples of dk.brics.xmlgraph.SingleContentNode


            }
        }
        // update ingoing edges
        for (Node node : xg.getNodes()) {
            if (node instanceof SingleContentNode) {
                SingleContentNode sc = (SingleContentNode)node;
                Node content = xg.getNode(sc.getContent());
                if (content instanceof ElementNode || content instanceof AttributeNode) {
                    sc.setContent(pred.get(content).getIndex());
                }
            }
            else if (node instanceof MultiContentNode) {
                MultiContentNode mc = (MultiContentNode)node;
                LinkedList<Integer> newcontent = new LinkedList<Integer>();
View Full Code Here

TOP

Related Classes of dk.brics.xmlgraph.SingleContentNode

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.