Lowest level - packages/parts
The 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 Tree
The jaxb content tree is the second level of the ...

News of Plutext