Package org.kabeja.processing

Examples of org.kabeja.processing.PostProcessorConfig


      } else if (ELEMENT_FILTER.equals(localName)) {
        SAXFilterConfig config = new SAXFilterConfig(this.properties);
        config.setFilterName(this.name);
        this.pipeline.addSAXFilterConfig(config);
      } else if (ELEMENT_POSTPROCESS.equals(localName)) {
        PostProcessorConfig config = new PostProcessorConfig(
            this.properties);
        config.setPostProcessorName(this.name);
        this.pipeline.addPostProcessorConfig(config);
      } else if (ELEMENT_POSTPROCESSOR.equals(localName)) {
        this.postprocessor.setProperties(this.properties);
        this.manager.addPostProcessor(this.postprocessor, this.name);
      } else if (ELEMENT_CONFIGURATION.equals(localName)) {
View Full Code Here

TOP

Related Classes of org.kabeja.processing.PostProcessorConfig

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.