DocumentImpl docImpl = (DocumentImpl) parent;
return new ElementImpl(docImpl, localName,
(NamespaceImpl) ns, this);
case Node.DOCUMENT_FRAGMENT_NODE:
DocumentFragmentImpl docFragImpl = (DocumentFragmentImpl) parent;
return new ElementImpl((DocumentImpl) docFragImpl
.getOwnerDocument(), localName, (NamespaceImpl) ns, this);
default:
throw new OMDOMException(
"The parent container can only be an ELEMENT, DOCUMENT " +
"or a DOCUMENT FRAGMENT");