Package com.jclark.xsl.sax

Examples of com.jclark.xsl.sax.SaxFilterMaker


        // which presumably are XRAP commands, and make them
        // available to the XRAP processor through this XMLReader
        ResultReaderAdapter xrapInputReader =
            new ResultReaderAdapter(context, _content, sourceNode);

        SaxFilterMaker fm = context.getSaxExtensionFilter();
        if (fm == null) {
            throw new XSLException("XRAPAction::no SaxFilterMaker");
        }

        // filt encapsulates the XRAP processor
        XMLFilter filt = fm.getFilter();
        filt.setParent(xrapInputReader);

        // the filter (XRAP processor) writes its results to
        // a SAX ContentHandler.  Our implementation of
        // ContentHandler transforms the SAX events into
View Full Code Here

TOP

Related Classes of com.jclark.xsl.sax.SaxFilterMaker

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.