All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface vnet.markup.CData

public interface CData
extends MarkupNode
A CDATA object is a representation of character data that is not interpreted as markup. In plain terms, it is block of text in the document.

CData objects can be added to Elements, however Elements cannot be added to CData objects.

Note: vnet.markup classes are not thread safe. Locking must be performed by the application.


Method Index

 o toCharArray()
Gets the object's character data.
 o toString()
Gets the object's character data.
 o toString(MarkupReader, int)
Gets the object's character data.

Methods

 o toCharArray
 public abstract char[] toCharArray()
Gets the object's character data.

Returns:
A caharacter array containing the character data.
 o toString
 public abstract String toString()
Gets the object's character data.

Returns:
A string conatining the character data.
Overrides:
toString in class Object
 o toString
 public abstract boolean toString(MarkupReader reader,
                                  int depth)
Gets the object's character data.

Returns:
A string conatining the character data.

All Packages  Class Hierarchy  This Package  Previous  Next  Index