Sets the TEXT value of the ds:XPath
Element.
if (this._constructionElement.getChildNodes() != null) {
NodeList nl = this._constructionElement.getChildNodes();
for (int i = 0; i < nl.getLength(); i++) {
this._constructionElement.removeChild(nl.item(i));
}
}
Text xpathText = this._doc.createTextNode(xpath);
this._constructionElement.appendChild(xpathText);