Java XML Attribute Set setAttributeValue(Element element, String attribute, String value)

Here you can find the source of setAttributeValue(Element element, String attribute, String value)

Description

Set an attribute and his value to the specified node

License

Open Source License

Declaration

public static void setAttributeValue(Element element, String attribute, String value) 

Method Source Code

//package com.java2s;
/*//from  w ww  .  j a va  2 s.com
 * Copyright 2010, 2011 Institut Pasteur.
 * 
 * This file is part of ICY.
 * 
 * ICY is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * ICY is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with ICY. If not, see <http://www.gnu.org/licenses/>.
 */

import org.w3c.dom.Element;

public class Main {
    /**
     * Set an attribute and his value to the specified node
     */
    public static void setAttributeValue(Element element, String attribute, String value) {
        element.setAttribute(attribute, value);
    }
}

Related

  1. setAttribute(Node node, String attr, String value)
  2. setAttribute(Node node, String key, String value)
  3. setAttribute(Node pNode, String attrName)
  4. setAttribute(String name, String value, Element el)
  5. setAttributeNS(Element node, String namespaceURI, String prefix, String nodeName, String value)
  6. setAttributeValue(final Element target, final String attributeName, final String value)
  7. setAttributeValue(Node node, String attName, String attValue)
  8. setAttributeValue(Node node, String attribute, String value)
  9. setAttributeValue(Node sNode, String attribName, String val)