Package org.jdom
Class CDATA
- java.lang.Object
-
- org.jdom.Content
-
- org.jdom.Text
-
- org.jdom.CDATA
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class CDATA extends Text
An XML CDATA section. Represents character-based content within an XML document that should be output within special CDATA tags. Semantically it's identical to a simpleTextobject, but output behavior is different. CDATA makes no guarantees about the underlying textual representation of character data, but does expose that data as a Java String.- Version:
- $Revision: 1.32 $, $Date: 2007/11/10 05:28:58 $
- Author:
- Dan Schaffer, Brett McLaughlin, Jason Hunter, Bradley S. Huffman, Victor Toni
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidappend(java.lang.String str)This will append character content to whatever content already exists within thisCDATAnode.voidappend(Text text)This will append the content of anotherTextnode to this node.TextsetText(java.lang.String str)This will set the value of thisCDATAnode.java.lang.StringtoString()This returns aStringrepresentation of theCDATAnode, suitable for debugging.-
Methods inherited from class org.jdom.Text
clone, getText, getTextNormalize, getTextTrim, getValue, normalizeString
-
Methods inherited from class org.jdom.Content
detach, equals, getDocument, getParent, getParentElement, hashCode, setParent
-
-
-
-
Constructor Detail
-
CDATA
protected CDATA()
This is the protected, no-args constructor standard in all JDOM classes. It allows subclassers to get a raw instance with no initialization.
-
CDATA
public CDATA(java.lang.String string)
This constructor creates a newCDATAnode, with the supplied string value as it's character content.- Parameters:
string- the node's character content.- Throws:
IllegalDataException- ifstrcontains an illegal character such as a vertical tab (as determined byVerifier.checkCharacterData(java.lang.String)) or the CDATA end delimiter]]>.
-
-
Method Detail
-
setText
public Text setText(java.lang.String str)
This will set the value of thisCDATAnode.- Overrides:
setTextin classText- Parameters:
str- value for node's content.- Returns:
- the object on which the method was invoked
- Throws:
IllegalDataException- ifstrcontains an illegal character such as a vertical tab (as determined byVerifier.checkCharacterData(java.lang.String)) or the CDATA end delimiter]]>.
-
append
public void append(java.lang.String str)
This will append character content to whatever content already exists within thisCDATAnode.- Overrides:
appendin classText- Parameters:
str- character content to append.- Throws:
IllegalDataException- ifstrcontains an illegal character such as a vertical tab (as determined byVerifier.checkCharacterData(java.lang.String)) or the CDATA end delimiter]]>.
-
append
public void append(Text text)
This will append the content of anotherTextnode to this node.
-
toString
public java.lang.String toString()
This returns aStringrepresentation of theCDATAnode, suitable for debugging. If the XML representation of theCDATAnode is desired, eitherorText.getText()XMLOutputter.output(CDATA, java.io.Writer)should be used.
-
-