case (OMNode.COMMENT_NODE): {
OMComment importedComment = (OMComment) child;
return createOMComment(null, importedComment.getValue());
}
case (OMNode.DTD_NODE) : {
OMDocType importedDocType = (OMDocType) child;
return createOMDocType(null, importedDocType.getRootName(),
importedDocType.getPublicId(), importedDocType.getSystemId(),
importedDocType.getInternalSubset());
}
default: {
throw new UnsupportedOperationException(
"Not Implemented Yet for the given node type");
}