| 
 | ||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||
java.lang.Objectorg.jibx.runtime.impl.XMLWriterNamespaceBase
org.jibx.runtime.impl.XMLWriterBase
org.jibx.runtime.impl.GenericXMLWriter
public class GenericXMLWriter
Generic handler for marshalling text document to a writer. This is the most general output handler since it can be used with any character encoding and and output writer.
| Constructor Summary | |
|---|---|
| GenericXMLWriter(GenericXMLWriter base,
                 java.lang.String[] uris)Copy constructor. | |
| GenericXMLWriter(java.lang.String[] uris)Constructor. | |
| Method Summary | |
|---|---|
|  void | close()Close document output. | 
|  IXMLWriter | createChildWriter(java.lang.String[] uris)Create a child writer instance to be used for a separate binding. | 
|  void | flush()Flush document output. | 
|  void | indent()Request output indent. | 
|  void | indent(int bias)Request output indent. | 
|  void | setIndentSpaces(int count,
                java.lang.String newline,
                char indent)Set nesting indentation. | 
|  void | setOutput(java.io.Writer outw,
          ICharacterEscaper escaper)Set output writer and escaper. | 
|  void | writeCData(java.lang.String text)Write CDATA text to document. | 
|  void | writeTextContent(java.lang.String text)Write ordinary character data text content to document. | 
| Methods inherited from class org.jibx.runtime.impl.XMLWriterBase | 
|---|
| addAttribute, closeEmptyTag, closeStartTag, endTag, reset, startTagClosed, startTagNamespaces, startTagOpen, writeComment, writeDocType, writeEntityRef, writePI, writeXMLDecl | 
| Methods inherited from class org.jibx.runtime.impl.XMLWriterNamespaceBase | 
|---|
| getExtensionNamespaces, getNamespaceCount, getNamespacePrefix, getNamespaces, getNamespaceUri, getNestingDepth, getPrefixIndex, openNamespaces, popExtensionNamespaces, pushExtensionNamespaces | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Methods inherited from interface org.jibx.runtime.IXMLWriter | 
|---|
| getExtensionNamespaces, getNamespaceCount, getNamespacePrefix, getNamespaces, getNamespaceUri, getNestingDepth, getPrefixIndex, openNamespaces, popExtensionNamespaces, pushExtensionNamespaces | 
| Constructor Detail | 
|---|
public GenericXMLWriter(java.lang.String[] uris)
uris - ordered array of URIs for namespaces used in document (must
 be constant; the value in position 0 must always be the empty string "",
 and the value in position 1 must always be the XML namespace
 "http://www.w3.org/XML/1998/namespace")
public GenericXMLWriter(GenericXMLWriter base,
                        java.lang.String[] uris)
base - instance to be used as base for writeruris - ordered array of URIs for namespaces used in document
 (see GenericXMLWriter(String[]))| Method Detail | 
|---|
public void setOutput(java.io.Writer outw,
                      ICharacterEscaper escaper)
outw - writer for document data outputescaper - character escaper for chosen encoding
public void setIndentSpaces(int count,
                            java.lang.String newline,
                            char indent)
count - number of character to indent per level, or disable
 indentation if negative (zero means new line only)newline - sequence of characters used for a line ending
 (null means use the single character '\n')indent - whitespace character used for indentation
public void writeTextContent(java.lang.String text)
                      throws java.io.IOException
text - content value text
java.io.IOException - on error writing to document
public void writeCData(java.lang.String text)
                throws java.io.IOException
text - content value text
java.io.IOException - on error writing to document
public void indent(int bias)
            throws java.io.IOException
bias - indent depth difference (positive or negative) from current
 element nesting depth
java.io.IOException - on error writing to document
public void indent()
            throws java.io.IOException
java.io.IOException - on error writing to document
public void flush()
           throws java.io.IOException
flush in interface IXMLWriterflush in class XMLWriterBasejava.io.IOException - on error writing to document
public void close()
           throws java.io.IOException
close in interface IXMLWriterclose in class XMLWriterBasejava.io.IOException - on error writing to documentpublic IXMLWriter createChildWriter(java.lang.String[] uris)
uris - ordered array of URIs for namespaces used in document
 (see GenericXMLWriter(String[]))
| 
 | ||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||