org.dom4j
public interface CharacterData extends Node
CharacterData is a marker interface for character based nodes
such as the CDATA,Comment and
Text nodes.
Version: $Revision: 1.9 $
| Method Summary | |
|---|---|
| void | appendText(String text)
Appends the given text to this nodes text value. |
node.setText(node.getText() + text)
but allows for possible implementation optimisations (such as a text
based node storing a StringBuffer internally
Parameters: text the text to append