Java XML Element Create createComment(Element parent, String str)

Here you can find the source of createComment(Element parent, String str)

Description

Creates a DOM comment

License

Apache License

Parameter

Parameter Description
parent parent DOM element
str comment text

Return

DOM comment

Declaration

public static Comment createComment(Element parent, String str) 

Method Source Code


//package com.java2s;
/*//from  www.ja  v  a 2  s . c  om
 * Copyright 2009-2016 DigitalGlobe, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and limitations under the License.
 *
 */

import org.w3c.dom.*;

public class Main {
    /**
     * Creates a DOM comment
     * @param parent parent DOM element
     * @param str comment text
     * @return DOM comment
     */
    public static Comment createComment(Element parent, String str) {
        Document doc = parent.getOwnerDocument();
        Comment c = doc.createComment(str);
        parent.appendChild(c);
        return c;
    }
}

Related

  1. addNewElementWithAttribute(Document xmlDoc, Node node, String elementName, String elementValue, String attrName, String attrValue)
  2. createChildElement(Document doc, Element parent, String name, String textValue, String[] attributeNames, String[] attributeValues)
  3. createChildInternal(Document document, Node parent, String nodeName, String... attr_name_and_value)
  4. createElement(Document d, String name, String value)
  5. createElement(Document d, String name, String value, boolean isCDATA)
  6. createElement(Document d, String tagName)
  7. createElement(Document doc, Node parent, int depth, String name, String contents)