* Sets the content of each element in the set of matched elements to the specified text.
*/
public Jerry text(String text) {
for (Node node : nodes) {
node.removeAllChilds();
Text textNode = new Text(node.getOwnerDocument(), null);
textNode.setTextContent(text);
node.addChild(textNode);
}
return this;
}