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