Uses of Class
org.jdom.Text
-
Packages that use Text Package Description org.jdom Classes to represent the components of an XML document.org.jdom.output Classes to output JDOM documents to various destinations. -
-
Uses of Text in org.jdom
Subclasses of Text in org.jdom Modifier and Type Class Description class
CDATA
An XML CDATA section.Methods in org.jdom that return Text Modifier and Type Method Description Text
CDATA. setText(java.lang.String str)
This will set the value of thisCDATA
node.Text
Text. setText(java.lang.String str)
This will set the value of thisText
node.Text
DefaultJDOMFactory. text(java.lang.String text)
Text
JDOMFactory. text(java.lang.String str)
This creates the Text with the supplied text.Text
UncheckedJDOMFactory. text(java.lang.String str)
Methods in org.jdom with parameters of type Text Modifier and Type Method Description void
CDATA. append(Text text)
This will append the content of anotherText
node to this node.void
Text. append(Text text)
This will append the content of anotherText
node to this node. -
Uses of Text in org.jdom.output
Methods in org.jdom.output with parameters of type Text Modifier and Type Method Description void
XMLOutputter. output(Text text, java.io.OutputStream out)
Print out a
node.Text
void
XMLOutputter. output(Text text, java.io.Writer out)
Print out a
node.Text
java.lang.String
XMLOutputter. outputString(Text text)
Return a string representing a Text node.protected void
XMLOutputter. printText(java.io.Writer out, Text text)
This will handle printing of
strings.Text
-