Package org.apache.cocoon.pipeline.component.sax

Examples of org.apache.cocoon.pipeline.component.sax.FileReaderComponent


    /**
     * A very simple pipeline that only uses a reader.
     */
    public void testPipelineWithReader() throws Exception {
        Pipeline pipeline = new NonCachingPipeline();
        pipeline.addComponent(new FileReaderComponent(this.getClass().getResource("/test.xml")));
        pipeline.setup(System.out);
        pipeline.execute();
    }
View Full Code Here

TOP

Related Classes of org.apache.cocoon.pipeline.component.sax.FileReaderComponent

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.