Package org.dom4j

Interface CharacterData

    • Method Detail

      • appendText

        void appendText​(java.lang.String text)
        Appends the given text to this nodes text value. Calling this method is equivalent of the code 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