Uses of Class
uxparser.XWriter

Uses of XWriter in uxparser
 

Methods in uxparser that return XWriter
 XWriter XWriter.attr(java.lang.String name, java.lang.String value)
          Write an attribute pair name="value" where the value is written using safe().
 XWriter XWriter.attr(java.lang.String name, java.lang.String value)
          Write an attribute pair name="value" where the value is written using safe().
 XWriter XWriter.indent(int indent)
          Write the specified number of spaces.
 XWriter XWriter.indent(int indent)
          Write the specified number of spaces.
 XWriter XWriter.nl()
          Write a newline character and return this.
 XWriter XWriter.nl()
          Write a newline character and return this.
 XWriter XWriter.prolog()
          This write the standard prolog <?xml version="1.0" encoding="UTF-8"?>
 XWriter XWriter.prolog()
          This write the standard prolog <?xml version="1.0" encoding="UTF-8"?>
 XWriter XWriter.safe(int c, boolean escapeWhitespace)
          Convenience for XWriter.safe(this, c, escapeWhitespace).
 XWriter XWriter.safe(int c, boolean escapeWhitespace)
          Convenience for XWriter.safe(this, c, escapeWhitespace).
 XWriter XWriter.safe(java.lang.String s)
          Convenience for XWriter.safe(this, s, true).
 XWriter XWriter.safe(java.lang.String s)
          Convenience for XWriter.safe(this, s, true).
 XWriter XWriter.safe(java.lang.String s, boolean escapeWhitespace)
          Convenience for XWriter.safe(this, s, escapeWhitespace).
 XWriter XWriter.safe(java.lang.String s, boolean escapeWhitespace)
          Convenience for XWriter.safe(this, s, escapeWhitespace).
 XWriter XWriter.w(boolean x)
          Write the specified boolean and return this.
 XWriter XWriter.w(boolean x)
          Write the specified boolean and return this.
 XWriter XWriter.w(char x)
          Write the specified char and return this.
 XWriter XWriter.w(char x)
          Write the specified char and return this.
 XWriter XWriter.w(double x)
          Write the specified double and return this.
 XWriter XWriter.w(double x)
          Write the specified double and return this.
 XWriter XWriter.w(float x)
          Write the specified float and return this.
 XWriter XWriter.w(float x)
          Write the specified float and return this.
 XWriter XWriter.w(int x)
          Write the specified int and return this.
 XWriter XWriter.w(int x)
          Write the specified int and return this.
 XWriter XWriter.w(long x)
          Write the specified long and return this.
 XWriter XWriter.w(long x)
          Write the specified long and return this.
 XWriter XWriter.w(java.lang.Object x)
          Write the specified Object and return this.
 XWriter XWriter.w(java.lang.Object x)
          Write the specified Object and return this.
 

Methods in uxparser with parameters of type XWriter
abstract  void XContent.write(XWriter out)
          Write to the XWriter.
 void XElem.write(XWriter out)
          Write to the specified XWriter stream with indent of 0.
 void XText.write(XWriter out)
          Write to the specified XWriter stream.
abstract  void XContent.write(XWriter out)
          Write to the XWriter.
 void XText.write(XWriter out)
          Write to the specified XWriter stream.
 void XElem.write(XWriter out)
          Write to the specified XWriter stream with indent of 0.
 void XElem.write(XWriter out, int indent)
          Write to the specified XWriter stream.
 void XElem.write(XWriter out, int indent)
          Write to the specified XWriter stream.