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

org.wickedsource.docxstamper.walk.BaseDocumentWalker Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.wickedsource.docxstamper.walk;

import org.docx4j.wml.*;

public abstract class BaseDocumentWalker extends DocumentWalker {

    public BaseDocumentWalker(ContentAccessor contentAccessor) {
        super(contentAccessor);
    }

    @Override
    protected void onParagraph(P paragraph) {

    }

    @Override
    protected void onTable(Tbl table) {

    }

    @Override
    protected void onTableCell(Tc tableCell) {

    }

    @Override
    protected void onTableRow(Tr tableRow) {

    }

    @Override
    protected void onCommentRangeStart(CommentRangeStart commentRangeStart) {

    }

    @Override
    protected void onCommentRangeEnd(CommentRangeEnd commentRangeEnd) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy