|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sun.xml.bind.v2.runtime.output.XmlOutputAbstractImpl
com.sun.xml.bind.v2.runtime.output.UTF8XmlOutput
com.sun.xml.bind.v2.runtime.output.IndentingUTF8XmlOutput
public final class IndentingUTF8XmlOutput
UTF8XmlOutput
with indentation.
TODO: not sure if it's a good idea to move the indenting functionality to another class.
Doesn't have to be final, but it helps the JVM.
Field Summary |
---|
Fields inherited from class com.sun.xml.bind.v2.runtime.output.UTF8XmlOutput |
---|
closeStartTagPending, octetBuffer, octetBufferIndex, out |
Fields inherited from class com.sun.xml.bind.v2.runtime.output.XmlOutputAbstractImpl |
---|
nsContext, nsUriIndex2prefixIndex, serializer |
Constructor Summary | |
---|---|
IndentingUTF8XmlOutput(OutputStream out,
String indentStr,
Encoded[] localNames,
CharacterEscapeHandler escapeHandler)
|
Method Summary | |
---|---|
void |
beginStartTag(int prefix,
String localName)
|
void |
beginStartTag(Name name)
Writes a start tag. |
void |
endDocument(boolean fragment)
Called at the very end. |
void |
endTag(int prefix,
String localName)
|
void |
endTag(Name name)
|
void |
text(Pcdata value,
boolean needSP)
Writes XML text with character escaping, if necessary. |
void |
text(String value,
boolean needSP)
Writes XML text with character escaping, if necessary. |
Methods inherited from class com.sun.xml.bind.v2.runtime.output.UTF8XmlOutput |
---|
attribute, attribute, closeStartTag, endStartTag, flushBuffer, setHeader, startDocument, text, text, write, write, write, writeNsDecl, writeNsDecls |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public IndentingUTF8XmlOutput(OutputStream out, String indentStr, Encoded[] localNames, CharacterEscapeHandler escapeHandler)
indentStr
- set to null for no indentation and optimal performance.
otherwise the string is used for indentation.Method Detail |
---|
public void beginStartTag(int prefix, String localName) throws IOException
beginStartTag
in interface XmlOutput
beginStartTag
in class UTF8XmlOutput
IOException
public void beginStartTag(Name name) throws IOException
XmlOutputAbstractImpl
At this point XmlOutputAbstractImpl.nsContext
holds namespace declarations needed for this
new element.
This method is used for writing tags that are indexed.
beginStartTag
in interface XmlOutput
beginStartTag
in class UTF8XmlOutput
IOException
public void endTag(Name name) throws IOException
endTag
in interface XmlOutput
endTag
in class UTF8XmlOutput
IOException
public void endTag(int prefix, String localName) throws IOException
endTag
in interface XmlOutput
endTag
in class UTF8XmlOutput
IOException
public void text(String value, boolean needSP) throws IOException
XmlOutput
text
in interface XmlOutput
text
in class UTF8XmlOutput
value
- this string can contain characters that might need escaping
(such as '&' or '>')
IOException
public void text(Pcdata value, boolean needSP) throws IOException
XmlOutput
text
in interface XmlOutput
text
in class UTF8XmlOutput
value
- this string can contain characters that might need escaping
(such as '&' or '>')
IOException
public void endDocument(boolean fragment) throws IOException, SAXException, XMLStreamException
XmlOutputAbstractImpl
endDocument
in interface XmlOutput
endDocument
in class UTF8XmlOutput
fragment
- false if we are writing the whole document.
IOException
SAXException
XMLStreamException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |