Class XMLStringBuilder

java.lang.Object
oracle.stellent.ridc.common.xml.XMLStringBuilder

public class XMLStringBuilder extends Object
Helper class for building XML documents from string buffer objects
  • Constructor Details

    • XMLStringBuilder

      public XMLStringBuilder()
  • Method Details

    • openCDataSection

      public static void openCDataSection(StringBuffer sb)
      Open the CDATA section
      Parameters:
      sb - the XML buffer
    • closeCDataSection

      public static void closeCDataSection(StringBuffer sb)
      Close the CDATA section
      Parameters:
      sb - the XML Buffer
    • addCDataSection

      public static void addCDataSection(String cdata, StringBuffer sb)
      Add a CDATA section with the given content
      Parameters:
      cdata - the CDATA content
      sb - the XML Buffer
    • addTextNode

      public static void addTextNode(String name, String text, boolean isCData, StringBuffer sb)
      Add a text node with the given text value
      Parameters:
      name - the name of the node
      text - the text for the node
      isCData - if true, the text is wrapped in a CDATA section
      sb - the XML buffer
    • addAttribute

      public static void addAttribute(String name, String value, StringBuffer sb, boolean finishTag)
      Add an XML node attribute
      Parameters:
      name - the attribute name
      value - the attribute value
      sb - the XML buffer
      finishTag - if true the tag is closed, false to leave open
    • openCloseTag

      public static void openCloseTag(String name, StringBuffer sb)
      Draw an empty tag
      Parameters:
      name - the tag name
      sb - the XML buffer
    • openTag

      public static void openTag(String name, StringBuffer sb, boolean keepOpenForAttrs)
      Draw an element tag
      Parameters:
      name - the element name
      sb - the XML buffer
      keepOpenForAttrs - if true, the element will be left open for attributes
    • closeTag

      public static void closeTag(String name, StringBuffer sb)
      Close an element tag
      Parameters:
      name - the element name
      sb - the XML buffer