Java XML Element Create createChildInternal(Document document, Node parent, String nodeName, String... attr_name_and_value)

Here you can find the source of createChildInternal(Document document, Node parent, String nodeName, String... attr_name_and_value)

Description

create Child Internal

License

Apache License

Declaration

private static Node createChildInternal(Document document, Node parent, String nodeName,
            String... attr_name_and_value) 

Method Source Code

//package com.java2s;
/**/*from w ww .  j a va  2 s.  c o  m*/
 * Copyright Universite Joseph Fourier (www.ujf-grenoble.fr)
 * 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.Document;
import org.w3c.dom.Element;

import org.w3c.dom.Node;

public class Main {
    private static Node createChildInternal(Document document, Node parent, String nodeName,
            String... attr_name_and_value) {
        Element newNode = document.createElement(nodeName);

        for (int i = 0; i < attr_name_and_value.length; i += 2) {
            String attrName = attr_name_and_value[i];
            String attrValue = attr_name_and_value[i + 1];
            newNode.setAttribute(attrName, attrValue);
        }
        parent.appendChild(newNode);
        return newNode;
    }
}

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. createComment(Element parent, String str)
  4. createElement(Document d, String name, String value)
  5. createElement(Document d, String name, String value, boolean isCDATA)
  6. createElement(Document d, String tagName)