All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pro.verron.officestamper.api.PreProcessor Maven / Gradle / Ivy

Go to download

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy