Package | Description |
---|---|
org.jdom |
Classes to represent the components of an XML document.
|
org.jdom.output |
Classes to output JDOM documents to various destinations.
|
Modifier and Type | Class and Description |
---|---|
class |
CDATA
An XML CDATA section.
|
Modifier and Type | Method and Description |
---|---|
Text |
Text.setText(String str)
This will set the value of this
Text node. |
Text |
CDATA.setText(String str)
This will set the value of this
CDATA node. |
Text |
UncheckedJDOMFactory.text(String str) |
Text |
JDOMFactory.text(String str)
This creates the Text with the supplied text.
|
Text |
DefaultJDOMFactory.text(String text) |
Modifier and Type | Method and Description |
---|---|
void |
Text.append(Text text)
This will append the content of another
Text node
to this node. |
void |
CDATA.append(Text text)
This will append the content of another
Text node
to this node. |
Modifier and Type | Method and Description |
---|---|
void |
XMLOutputter.output(Text text,
OutputStream out)
Print out a
node. |
void |
XMLOutputter.output(Text text,
Writer out)
Print out a
node. |
String |
XMLOutputter.outputString(Text text)
Return a string representing a Text node.
|
protected void |
XMLOutputter.printText(Writer out,
Text text)
This will handle printing of
strings. |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.