org.jdom
public class CDATA extends Text
Version: $Revision: 1.30 $, $Date: 2004/02/27 11:32:57 $
Constructor Summary | |
---|---|
protected | CDATA()
This is the protected, no-args constructor standard in all JDOM
classes. |
CDATA(String str)
This constructor creates a new CDATA node, with the
supplied string value as it's character content.
|
Method Summary | |
---|---|
void | append(String str)
This will append character content to whatever content already
exists within this CDATA node.
|
Text | setText(String str)
This will set the value of this CDATA node.
|
String | toString()
This returns a String representation of the
CDATA node, suitable for debugging. |
CDATA
node, with the
supplied string value as it's character content.
Parameters: str the node's character content.
Throws: IllegalDataException if str
contains an
illegal character such as a vertical tab (as determined
by {@link org.jdom.Verifier#checkCharacterData})
or the CDATA end delimiter ]]>
.
CDATA
node.
Parameters: str character content to append.
Throws: IllegalDataException if str
contains an
illegal character such as a vertical tab (as determined
by {@link org.jdom.Verifier#checkCharacterData})
or the CDATA end delimiter ]]>
.
CDATA
node.
Parameters: str value for node's content.
Returns: the object on which the method was invoked
Throws: IllegalDataException if str
contains an
illegal character such as a vertical tab (as determined
by {@link org.jdom.Verifier#checkCharacterData})
or the CDATA end delimiter ]]>
.
String
representation of the
CDATA
node, suitable for debugging. If the XML
representation of the CDATA
node is desired,
either {@link #getText}
or
{@link org.jdom.output.XMLOutputter#output(CDATA, java.io.Writer)}
should be used.
Returns: String
- information about this node.