pro.verron.officestamper.api.PreProcessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of engine Show documentation
Show all versions of engine Show documentation
Office-stamper is a Java template engine for docx documents, forked from org.wickedsource.docx-stamper
The newest version!
package pro.verron.officestamper.api;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
/**
* An interface for pre-processors that are called before the actual processing
* of a document takes place.
*/
public interface PreProcessor {
/**
* Processes the given document before the actual processing takes place.
*
* @param document the document to process.
*/
void process(WordprocessingMLPackage document);
}