Class OutputWrapper

  • All Implemented Interfaces:
    java.lang.Cloneable

    public class OutputWrapper
    extends org.jdom.output.XMLOutputter
    This class extends XMLOutputter in order to provide a way to walk an Element tree into a String.
    Version:
    $Id: OutputWrapper.java 463298 2006-10-12 16:10:32Z henning $
    Author:
    Jon S. Stevens, Sam Ruby
    • Nested Class Summary

      • Nested classes/interfaces inherited from class org.jdom.output.XMLOutputter

        org.jdom.output.XMLOutputter.NamespaceStack
    • Field Summary

      • Fields inherited from class org.jdom.output.XMLOutputter

        currentFormat, preserveFormat
    • Constructor Summary

      Constructors 
      Constructor Description
      OutputWrapper()
      Empty constructor
      OutputWrapper​(org.jdom.output.Format f)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String outputString​(org.jdom.Element element, boolean strip)
      This method walks an Element tree into a String.
      • Methods inherited from class org.jdom.output.XMLOutputter

        clone, escapeAttributeEntities, escapeElementEntities, getFormat, output, output, output, output, output, output, output, output, output, output, output, output, output, output, output, output, output, output, outputElementContent, outputElementContent, outputString, outputString, outputString, outputString, outputString, outputString, outputString, outputString, outputString, printAttributes, printCDATA, printComment, printDeclaration, printDocType, printElement, printEntityRef, printProcessingInstruction, printText, setFormat, toString
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • OutputWrapper

        public OutputWrapper()
        Empty constructor
      • OutputWrapper

        public OutputWrapper​(org.jdom.output.Format f)
        Parameters:
        f -
    • Method Detail

      • outputString

        public java.lang.String outputString​(org.jdom.Element element,
                                             boolean strip)
        This method walks an Element tree into a String. The cool thing about it is that it will strip off the first Element. For example, if you have:

        <td> foo <strong>bar</strong> ack </td>

        It will output

        foo <strong>bar</strong> ack </td>

        Parameters:
        element -
        strip -
        Returns:
        The output string.