Dom4JMapperBase, DomMapperBasepublic class DocumentModelMapperBase
extends java.lang.Object
Base implementation for custom marshaller/unmarshallers to any document model representation. This class just provides a few basic operations that are used by the representation-specific subclasses.
| Modifier and Type | Field | Description |
|---|---|---|
protected UnmarshallingContext |
m_unmarshalContext |
Context being used for unmarshalling.
|
protected IXMLWriter |
m_xmlWriter |
Writer for direct output as XML.
|
static java.lang.String |
XML_NAMESPACE |
Fixed XML namespace.
|
static java.lang.String |
XMLNS_NAMESPACE |
Fixed XML namespace namespace.
|
| Constructor | Description |
|---|---|
DocumentModelMapperBase() |
| Modifier and Type | Method | Description |
|---|---|---|
protected java.lang.String |
accumulateText() |
Accumulate text content.
|
protected java.lang.String |
getNamespaceUri(int index) |
Get namespace URI for index.
|
protected int |
getNextNamespaceIndex() |
Get next namespace index.
|
protected boolean |
isWhitespace(char chr) |
Check if a character is a space character.
|
public static final java.lang.String XML_NAMESPACE
public static final java.lang.String XMLNS_NAMESPACE
protected IXMLWriter m_xmlWriter
protected UnmarshallingContext m_unmarshalContext
protected java.lang.String getNamespaceUri(int index)
index - namespace index to look upprotected int getNextNamespaceIndex()
protected java.lang.String accumulateText()
throws JiBXException
JiBXException - on error in unmarshallingprotected boolean isWhitespace(char chr)
chr - character to be checkedtrue if whitespace, false if not