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

com.vladsch.flexmark.docx.converter.util.DocumentContentHandler Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
package com.vladsch.flexmark.docx.converter.util;

import com.vladsch.flexmark.docx.converter.DocxRendererContext;

public interface DocumentContentHandler extends ContentContainer {
    /**
     * Called before starting document rendering
     *
     * @param context rendering context
     */
    void startDocumentRendering(DocxRendererContext context);

    /**
     * Called after finishing document rendering
     *
     * @param context rendering context
     */
    void endDocumentRendering(DocxRendererContext context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy