Package org.docx4j.jaxb
Class JAXBAssociation
java.lang.Object
org.docx4j.jaxb.JAXBAssociation
Represent an association between a DOM node and a JAXB object.
Note, from the javadoc, that this association is partial; not all XML elements have associated JAXB objects,
and not all JAXB objects have associated XML elements.
This happens (both Sun/Oracle, and MOXy) for an element implemented as a xsd:simpleType
eg /s:worksheet[1]/s:sheetData[1]/s:row[1]/s:c[1]/s:v[1]
<xsd:element name="v" type="s:ST_Xstring" minOccurs="0" maxOccurs="1"/>
which becomes a String field in some object
Also for attributes, I'd guess.
Hence this design.
- Author:
- jharrop
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
JAXBAssociation
-
-
Method Details
-
getDomNode
- Returns:
- the domNode
-
getJaxbObject
- Returns:
- the jaxbObject
-