CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA section is the "]]>" string that ends the CDATA section. CDATA sections cannot be nested. Their primary purpose is for including material such as XML fragments, without needing to escape all the delimiters.
CDATA extends {@link HasText}. To get the value of the CDATA section use {@link HasText#getText()}.
@author $Author$
@version $Date$ $Revision$
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 simple {@link Text} object, 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
@author Brett McLaughlin
@author Jason Hunter
@author Bradley S. Huffman
@author Victor Toni
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.