net.contextfw.web.application.DocumentProcessor Maven / Gradle / Ivy
package net.contextfw.web.application;
import org.dom4j.Document;
/**
* This interface defines a generic document processor.
*
*
* The document processor is mainly used to post process XSL-file after it has been
* constructed from resources. During post processing it is possible to modify the
* original XSL-file or read meta data that was inserted into templates.
*
*
*
* An XSL-post-processor can be set through
* {@link net.contextfw.web.application.configuration.Configuration}.
*
*
* @see net.contextfw.web.application.configuration.Configuration#XSL_POST_PROCESSOR
*/
public interface DocumentProcessor {
void process(Document document);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy