public class MXSerializer extends java.lang.Object implements XmlSerializer
Implemented features:
Implemented properties:
| Modifier and Type | Field and Description |
|---|---|
protected boolean |
attributeUseApostrophe |
protected int |
autoDeclaredPrefixes |
protected int |
depth |
protected boolean |
doIndent |
protected java.lang.String[] |
elName |
protected java.lang.String[] |
elNamespace |
protected int[] |
elNamespaceCount |
protected java.lang.String[] |
elPrefix |
protected static java.lang.String |
FEATURE_SERIALIZER_ATTVALUE_USE_APOSTROPHE |
protected boolean |
finished |
protected char[] |
indentationBuf |
protected int |
indentationJump |
protected java.lang.String |
indentationString |
protected java.lang.String |
lineSeparator |
protected java.lang.String |
location |
protected int |
maxIndentLevel |
protected int |
namespaceEnd |
protected java.lang.String[] |
namespacePrefix |
protected java.lang.String[] |
namespaceUri |
protected int |
offsetNewLine |
protected java.io.Writer |
out |
protected static java.lang.String |
PROPERTY_LOCATION |
protected static java.lang.String |
PROPERTY_SERIALIZER_INDENTATION |
protected static java.lang.String |
PROPERTY_SERIALIZER_LINE_SEPARATOR |
protected boolean |
seenBracket |
protected boolean |
seenBracketBracket |
protected boolean |
seenTag |
protected boolean |
setPrefixCalled |
protected boolean |
startTagIncomplete |
protected boolean |
writeIndentation |
protected boolean |
writeLineSepartor |
protected static java.lang.String |
XML_URI |
protected static java.lang.String |
XMLNS_URI |
| Constructor and Description |
|---|
MXSerializer() |
| Modifier and Type | Method and Description |
|---|---|
XmlSerializer |
attribute(java.lang.String namespace,
java.lang.String name,
java.lang.String value)
Writes an attribute.
|
void |
cdsect(java.lang.String text) |
protected void |
closeStartTag() |
void |
comment(java.lang.String text) |
void |
docdecl(java.lang.String text) |
void |
endDocument()
Finishes writing.
|
XmlSerializer |
endTag(java.lang.String namespace,
java.lang.String name)
Writes end tag.
|
protected void |
ensureElementsCapacity() |
protected void |
ensureNamespacesCapacity() |
void |
entityRef(java.lang.String text) |
void |
flush()
Writes all pending output to the stream.
|
int |
getDepth()
Returns the current depth of the element.
|
boolean |
getFeature(java.lang.String name)
Returns the current value of the feature with given name.
|
java.lang.String |
getName()
Returns the name of the current element as set by startTag().
|
java.lang.String |
getNamespace()
Returns the namespace URI of the current element as set by startTag().
|
java.lang.String |
getPrefix(java.lang.String namespace,
boolean generatePrefix)
Returns prefix that corresponds to the given namespace.
|
protected java.lang.String |
getPrefix(java.lang.String namespace,
boolean generatePrefix,
boolean nonEmpty) |
java.lang.Object |
getProperty(java.lang.String name)
Looks up the value of a property.
|
java.io.Writer |
getWriter() |
void |
ignorableWhitespace(java.lang.String text) |
protected java.lang.String |
lookupOrDeclarePrefix(java.lang.String namespace) |
protected static java.lang.String |
printable(char ch) |
protected static java.lang.String |
printable(java.lang.String s)
simple utility method -- good for debugging
|
void |
processingInstruction(java.lang.String text) |
protected void |
rebuildIndentationBuf()
For maximum efficiency when writing indents the required output is pre-computed This is an internal function that
recomputes buffer after any user requested changes.
|
protected void |
reset() |
void |
setFeature(java.lang.String name,
boolean state)
Sets feature identified by name (recommended to be URI for uniqueness).
|
void |
setOutput(java.io.OutputStream os,
java.lang.String encoding)
Sets the use binary output stream with given encoding.
|
void |
setOutput(java.io.Writer writer)
Sets the output to the given writer.
|
void |
setPrefix(java.lang.String prefix,
java.lang.String namespace)
Binds the given prefix to the given namespace.
|
void |
setProperty(java.lang.String name,
java.lang.Object value)
Sets the value of a property.
|
void |
startDocument(java.lang.String encoding,
java.lang.Boolean standalone)
Writes <?xml declaration with encoding (if encoding not null) and standalone flag (if
standalone not null) This method can only be called just after setOutput.
|
XmlSerializer |
startTag(java.lang.String namespace,
java.lang.String name)
Writes a start tag with the given namespace and name.
|
XmlSerializer |
text(char[] buf,
int start,
int len)
Writes text, where special XML chars are automatically escaped
|
XmlSerializer |
text(java.lang.String text)
Writes text, where special XML chars are automatically escaped
|
protected void |
writeAttributeValue(java.lang.String value,
java.io.Writer out) |
protected void |
writeElementContent(char[] buf,
int off,
int len,
java.io.Writer out) |
protected void |
writeElementContent(java.lang.String text,
java.io.Writer out) |
protected void |
writeIndent() |
protected static final java.lang.String XML_URI
protected static final java.lang.String XMLNS_URI
protected static final java.lang.String PROPERTY_LOCATION
protected static final java.lang.String FEATURE_SERIALIZER_ATTVALUE_USE_APOSTROPHE
protected static final java.lang.String PROPERTY_SERIALIZER_INDENTATION
protected static final java.lang.String PROPERTY_SERIALIZER_LINE_SEPARATOR
protected boolean attributeUseApostrophe
protected java.lang.String indentationString
protected java.lang.String lineSeparator
protected java.lang.String location
protected java.io.Writer out
protected int autoDeclaredPrefixes
protected int depth
protected java.lang.String[] elNamespace
protected java.lang.String[] elName
protected java.lang.String[] elPrefix
protected int[] elNamespaceCount
protected int namespaceEnd
protected java.lang.String[] namespacePrefix
protected java.lang.String[] namespaceUri
protected boolean finished
protected boolean setPrefixCalled
protected boolean startTagIncomplete
protected boolean doIndent
protected boolean seenTag
protected boolean seenBracket
protected boolean seenBracketBracket
protected int offsetNewLine
protected int indentationJump
protected char[] indentationBuf
protected int maxIndentLevel
protected boolean writeLineSepartor
protected boolean writeIndentation
protected static final java.lang.String printable(java.lang.String s)
protected static final java.lang.String printable(char ch)
protected void reset()
protected void ensureElementsCapacity()
protected void ensureNamespacesCapacity()
public void setFeature(java.lang.String name,
boolean state)
throws java.lang.IllegalArgumentException,
IllegalStateException
XmlSerializersetFeature in interface XmlSerializerIllegalStateException - If the feature is not supported or cannot be setjava.lang.IllegalArgumentExceptionpublic boolean getFeature(java.lang.String name)
throws java.lang.IllegalArgumentException
XmlSerializer
NOTE: unknown properties are always returned as null
getFeature in interface XmlSerializername - The name of the feature to be retrieved.java.lang.IllegalArgumentException - if feature string is nullprotected void rebuildIndentationBuf()
protected void writeIndent()
throws java.io.IOException
java.io.IOExceptionpublic void setProperty(java.lang.String name,
java.lang.Object value)
throws java.lang.IllegalArgumentException,
IllegalStateException
XmlSerializersetProperty in interface XmlSerializerIllegalStateException - if the property is not supported or cannot be setjava.lang.IllegalArgumentExceptionpublic java.lang.Object getProperty(java.lang.String name)
throws java.lang.IllegalArgumentException
XmlSerializer
NOTE: unknown properties are
getProperty in interface XmlSerializername - The name of the property to be retrieved.java.lang.IllegalArgumentExceptionpublic java.io.Writer getWriter()
public void setOutput(java.io.Writer writer)
XmlSerializer
WARNING no information about encoding is available!
setOutput in interface XmlSerializerpublic void setOutput(java.io.OutputStream os,
java.lang.String encoding)
throws java.io.IOException
XmlSerializersetOutput in interface XmlSerializerjava.io.IOExceptionpublic void startDocument(java.lang.String encoding,
java.lang.Boolean standalone)
throws java.io.IOException
XmlSerializerstartDocument in interface XmlSerializerjava.io.IOExceptionpublic void endDocument()
throws java.io.IOException
XmlSerializerendDocument in interface XmlSerializerjava.io.IOExceptionpublic void setPrefix(java.lang.String prefix,
java.lang.String namespace)
throws java.io.IOException
XmlSerializerxmlns:prefix='namespace' (or xmlns:prefix="namespace" depending what
character is used to quote attribute value).
NOTE: this method MUST be called directly before startTag() and if anything other than startTag() or setPrefix() is called next, an exception will be thrown.
NOTE: prefixes "xml" and "xmlns" are already bound and cannot be redefined see: Namespaces in XML Errata.
NOTE: to set default namespace, use as prefix empty string.
setPrefix in interface XmlSerializerprefix - must be not null (or IllegalArgumentException is thrown)namespace - must be not nulljava.io.IOExceptionprotected java.lang.String lookupOrDeclarePrefix(java.lang.String namespace)
public java.lang.String getPrefix(java.lang.String namespace,
boolean generatePrefix)
XmlSerializer
NOTE: if the prefix is the empty string "" and the default namespace is bound to this prefix, then the empty string ("") is returned.
NOTE: prefixes "xml" and "xmlns" are already bound, and will have values as defined Namespaces in XML specification
getPrefix in interface XmlSerializerprotected java.lang.String getPrefix(java.lang.String namespace,
boolean generatePrefix,
boolean nonEmpty)
public int getDepth()
XmlSerializer
<!-- outside --> 0
<root> 1
sometext 1
<foobar> 2
</foobar> 2
</root> 1
<!-- outside --> 0
getDepth in interface XmlSerializerpublic java.lang.String getNamespace()
XmlSerializer
NOTE: that notably means that:
getNamespace in interface XmlSerializerpublic java.lang.String getName()
XmlSerializergetName in interface XmlSerializerpublic XmlSerializer startTag(java.lang.String namespace, java.lang.String name) throws java.io.IOException
XmlSerializerstartTag in interface XmlSerializerjava.io.IOExceptionpublic XmlSerializer attribute(java.lang.String namespace, java.lang.String name, java.lang.String value) throws java.io.IOException
XmlSerializerattribute in interface XmlSerializerjava.io.IOExceptionprotected void closeStartTag()
throws java.io.IOException
java.io.IOExceptionpublic XmlSerializer endTag(java.lang.String namespace, java.lang.String name) throws java.io.IOException
XmlSerializer
Background: in kXML endTag had no arguments, and non matching tags were very difficult to find... If namespace is null no namespace prefix is printed, only the name is. If namespace is empty string then the serialzier will make sure that the default empty namespace is declared (in XML 1.0 xmlns='').
endTag in interface XmlSerializerjava.io.IOExceptionpublic XmlSerializer text(java.lang.String text) throws java.io.IOException
XmlSerializertext in interface XmlSerializerjava.io.IOExceptionpublic XmlSerializer text(char[] buf, int start, int len) throws java.io.IOException
XmlSerializertext in interface XmlSerializerjava.io.IOExceptionpublic void cdsect(java.lang.String text)
throws java.io.IOException
cdsect in interface XmlSerializerjava.io.IOExceptionpublic void entityRef(java.lang.String text)
throws java.io.IOException
entityRef in interface XmlSerializerjava.io.IOExceptionpublic void processingInstruction(java.lang.String text)
throws java.io.IOException
processingInstruction in interface XmlSerializerjava.io.IOExceptionpublic void comment(java.lang.String text)
throws java.io.IOException
comment in interface XmlSerializerjava.io.IOExceptionpublic void docdecl(java.lang.String text)
throws java.io.IOException
docdecl in interface XmlSerializerjava.io.IOExceptionpublic void ignorableWhitespace(java.lang.String text)
throws java.io.IOException
ignorableWhitespace in interface XmlSerializerjava.io.IOExceptionpublic void flush()
throws java.io.IOException
XmlSerializer
NOTE: if there is a need to close start tag (so no more attribute() calls are allowed) but without flushing the output call method text() with empty string (text("")).
flush in interface XmlSerializerjava.io.IOExceptionprotected void writeAttributeValue(java.lang.String value,
java.io.Writer out)
throws java.io.IOException
java.io.IOExceptionprotected void writeElementContent(java.lang.String text,
java.io.Writer out)
throws java.io.IOException
java.io.IOExceptionprotected void writeElementContent(char[] buf,
int off,
int len,
java.io.Writer out)
throws java.io.IOException
java.io.IOException