if (!(child instanceof org.w3c.dom.DocumentType)) {
if (child instanceof org.w3c.dom.Element) {
final List<Node> childNodes =
translateRootElement((org.w3c.dom.Element)child, document, documentName);
for (final Node childNode : childNodes) {
document.addChild(childNode);
}
} else {
document.addChild(translateNode(child, document, documentName));
}
}