Hi community,
I created a simple docx file consisting of 4 lines with simple text. I tried to manipulate some parts of the text by traversing over all org.docx4j.wml.Text elements:
WordprocessingMLPackage wpml = WordprocessingMLPackage.load(pathToDocX.toFile());
MainDocumentPart mdp = wpml.getMainDocumentPart();
Finder finder = new Finder(Text.class);
new TraversalUtil(mdp.getContent(), finder);
public static class Finder extends CallbackImpl {
protected Class<?> typeToFind;
public List<Object> results = new ArrayList<>();
protected Finder(Class<?> typeToFind) {
this.typeToFind = typeToFind;
}
public List<Object> apply(Object o) ...