docx4j has a three layered model of a docx file.
Lowest level - packages/partsThe lowest level is org.docx4j.openpackaging, which represents the docx package,
and each of its constituent parts.
Parts are generally subclasses of org.docx4j.openpackaging.parts.JaxbXmlPart
A JaxbXmlPart has a content tree:
- Code: Select all
public Object getJaxbElement() {
return jaxbElement;
}
public void setJaxbElement(Object jaxbElement) {
this.jaxbElement = jaxbElement;
}
Second level - JAXB Content TreeThe jaxb content tree is the second level of the ...