Java XML Attribute Set setAttribute(Node node, String attName, String val)

Here you can find the source of setAttribute(Node node, String attName, String val)

Description

set Attribute

License

Apache License

Declaration

public static void setAttribute(Node node, String attName, String val) 

Method Source Code

//package com.java2s;
/**//  www  . j  av a2 s. 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.NamedNodeMap;
import org.w3c.dom.Node;

public class Main {
    public static void setAttribute(Node node, String attName, String val) {
        NamedNodeMap attributes = node.getAttributes();
        Node attNode = node.getOwnerDocument().createAttributeNS(null, attName);
        attNode.setNodeValue(val);
        attributes.setNamedItem(attNode);
    }
}

Related

  1. setAttribute(Element element, String name, String value)
  2. setAttribute(Element targetElem, String name, String value)
  3. setAttribute(final Element element, final String attrName, final Object value)
  4. setAttribute(final Element element, final String name, final String value)
  5. setAttribute(Node n, String name, String value)
  6. setAttribute(Node node, String attr, String value)
  7. setAttribute(Node node, String key, String value)
  8. setAttribute(Node pNode, String attrName)
  9. setAttribute(String name, String value, Element el)