![JAR search and dependency download from the Maven repository](/logo.png)
org.wickedsource.docxstamper.util.walk.BaseDocumentWalker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx-stamper Show documentation
Show all versions of docx-stamper Show documentation
Docx-stamper is a Java template engine for docx documents. This is a maintenance fork from
https://github.com/thombergs/docx-stamper.
The newest version!
package org.wickedsource.docxstamper.util.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 - 2025 Weber Informatics LLC | Privacy Policy