Java XML Attribute Add addAttribute(Document doc, Element node, String name, String value)

Here you can find the source of addAttribute(Document doc, Element node, String name, String value)

Description

add Attribute

License

Apache License

Declaration

public static void addAttribute(Document doc, Element node, String name, String value) 

Method Source Code

//package com.java2s;
/*/*from   w w w.  j  av a  2s.  c o  m*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

public class Main {
    public static void addAttribute(Document doc, Element node, String name, String value) {
        Attr attribute = doc.createAttribute(name);
        attribute.setValue(value);
        node.getAttributes().setNamedItem(attribute);
    }
}

Related

  1. addAllElementsWithAttrId(final List list, final Element element, final String namespace)
  2. addArrayAnyTypeAttribute(Element element, Collection col)
  3. addArrayOffsetAttribute(Element element, int offset)
  4. addAttrDirect(Map values, Element el)
  5. addAttribute(Document doc, Element node, String name, String value)
  6. addAttribute(Document doc, Element parent, String attribute, Object value)
  7. addAttribute(Document doc, Node parentNode, String name, String content)
  8. addAttribute(Document doc, org.w3c.dom.Element e, String index, String value)
  9. addAttribute(Document doc, String name, Element e, String value)