Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import org.w3c.dom.Comment;
import org.w3c.dom.Document;

public class Main {

    public static void createComment(Document doc, String comment) {
        Comment c = doc.createComment(comment);
        doc.getDocumentElement().appendChild(c);
    }
}