List of utility methods to do XML Element Child Create
Element | createChildElement(Element parent, String tagName, Document doc) create Child Element Element child = doc.createElement(tagName);
parent.appendChild(child);
return child;
|
void | processAny(Element element, List Processes any element and add them into the element. for (Element anyElement : any) {
Node importedElement = element.getOwnerDocument().importNode(
anyElement, true);
element.appendChild(importedElement);
|