Adds:
isElementContentWhiteSpace()
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 isElementContentWhiteSpace();
public String getWholeText();
public Text replaceWholeText(String content) throws DOMException;
}