Adds:
isWhitespaceInElementContent()
wholeText()
Text
nodes logically-adjacent to this node;
i.e. the XPath value of the text nodeJava binding:
package org.w3c.dom;
public interface Text extends Node {
public boolean getIsWhitespaceInElementContent();
public String getWholeText();
public Text replaceWholeText(String content) throws DOMException;
}