Examples of DissectableSpecialElement


Examples of com.volantis.mcs.wbdom.dissection.DissectableSpecialElement

    }

    // Inherit Javadoc.
    public void shardLink(DissectableElement element,
            ShardLinkDetails details) throws DissectionException {
        DissectableSpecialElement delement = (DissectableSpecialElement) element;
        WBSAXSerialisationVisitor visitor =
                new DissectionWBSAXSerialisationVisitor(handler, configuration,
                        details, urlListener, resolver);
        // Iterate over the children, ignoring their parent.
        VisitorChildrenIterator childrenSerialiser =
            new VisitorChildrenIterator(visitor);
        try {
            if (delement.hasChildren()) {
                delement.forEachChild(childrenSerialiser);
            }
        } catch (WBDOMException e) {
            throw new DissectionException(e);
        }
    }
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.