DOMComment createWrapper(Comment node) { DOMComment wrapper = new DOMComment(this, node); _wrapperMap.put(node, wrapper); return wrapper; }
public static DOMComment __construct(Env env, @Optional string value) { DOMComment comment = getImpl(env).createComment(); if (value != null && value.length() > 0) { comment.setNodeValue(value); } return(comment); }