|
Oracle® Fusion Middleware Java API Reference for Oracle WebCenter Content Remote Intradoc Client (RIDC) 11g Release 1 (11.1) E17274-05 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
oracle.stellent.ridc.common.xml.XMLStringBuilder
public class XMLStringBuilder
Helper class for building XML documents from string buffer objects
| Constructor Summary | |
|---|---|
XMLStringBuilder() |
|
| Method Summary | |
|---|---|
static void |
addAttribute(String name, String value, StringBuffer sb, boolean finishTag)Add an XML node attribute |
static void |
addCDataSection(String cdata, StringBuffer sb)Add a CDATA section with the given content |
static void |
addTextNode(String name, String text, boolean isCData, StringBuffer sb)Add a text node with the given text value |
static void |
closeCDataSection(StringBuffer sb)Close the CDATA section |
static void |
closeTag(String name, StringBuffer sb)Close an element tag |
static void |
openCDataSection(StringBuffer sb)Open the CDATA section |
static void |
openCloseTag(String name, StringBuffer sb)Draw an empty tag |
static void |
openTag(String name, StringBuffer sb, boolean keepOpenForAttrs)Draw an element tag |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public XMLStringBuilder()
| Method Detail |
|---|
public static void openCDataSection(StringBuffer sb)
sb - the XML bufferpublic static void closeCDataSection(StringBuffer sb)
sb - the XML Buffer
public static void addCDataSection(String cdata,
StringBuffer sb)
cdata - the CDATA contentsb - the XML Buffer
public static void addTextNode(String name,
String text,
boolean isCData,
StringBuffer sb)
name - the name of the nodetext - the text for the nodeisCData - if true, the text is wrapped in a CDATA sectionsb - the XML buffer
public static void addAttribute(String name,
String value,
StringBuffer sb,
boolean finishTag)
name - the attribute namevalue - the attribute valuesb - the XML bufferfinishTag - if true the tag is closed, false to leave open
public static void openCloseTag(String name,
StringBuffer sb)
name - the tag namesb - the XML buffer
public static void openTag(String name,
StringBuffer sb,
boolean keepOpenForAttrs)
name - the element namesb - the XML bufferkeepOpenForAttrs - if true, the element will be left open for attributes
public static void closeTag(String name,
StringBuffer sb)
name - the element namesb - the XML buffer
|
Oracle® Fusion Middleware Java API Reference for Oracle WebCenter Content Remote Intradoc Client (RIDC) 11g Release 1 (11.1) E17274-05 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||