Here you can find the source of appendNewComment(Element parentElement, String commentText)
public static void appendNewComment(Element parentElement, String commentText)
//package com.java2s; import org.w3c.dom.*; public class Main { public static void appendNewComment(Element parentElement, String commentText) { Comment commentNode = parentElement.getOwnerDocument().createComment(commentText); parentElement.appendChild(commentNode); }/*from w w w. j a v a2 s. c o m*/ }