Package org.foray.common.sax

Examples of org.foray.common.sax.DocumentInputSource


     * @throws FOrayException For errors instantiating the document.
     */
    public FOrayDocument(final FOraySession session,
            final Document domDocument) throws FOrayException {
        this(session);
        this.inputSource = new DocumentInputSource(domDocument);
        this.parser = new DocumentReader();
        this.parser.setContentHandler(this.treeBuilder);
    }
View Full Code Here

TOP

Related Classes of org.foray.common.sax.DocumentInputSource

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.