Element child3 = domFactory.createElement();
child3.setName("child3");
child3.setAttribute("href", "24 inches");
Text text = domFactory.createText();
text.append("This is some text for \"Child3\"");
child3.addHead(text);
text = domFactory.createText();
text.append("This <node> is \"Text\" and already encoded.");
text.setEncoded(true);
child3.addTail(text);