Java XML Attribute Get getAttributeValue(Element el, String attributeName)

Here you can find the source of getAttributeValue(Element el, String attributeName)

Description

Gets the attribute value.

License

Open Source License

Parameter

Parameter Description
el a parameter
attributeName a parameter

Return

the attribute value

Declaration

public static String getAttributeValue(Element el, String attributeName) 

Method Source Code

//package com.java2s;
/*/*from  w w  w .  j a  v a2  s  .  c  o m*/
 * aTunes 1.14.0 code adapted by Jajuk team
 * 
 * Original copyright notice bellow : 
 * 
 * Copyright (C) 2006-2009 Alex Aranda, Sylvain Gaudard, Thomas Beckers and contributors
 *
 * See http://www.atunes.org/wiki/index.php?title=Contributing for information about contributors
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * This program 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 2
 * of the License, or (at your option) any later version.
 *
 * This program 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.
 */

import org.w3c.dom.Element;

public class Main {
    /**
     * Gets the attribute value.
     * 
     * @param el 
     * @param attributeName 
     * 
     * @return the attribute value
     */
    public static String getAttributeValue(Element el, String attributeName) {
        return (null == el ? null : el.getAttribute(attributeName));
    }
}

Related

  1. getAttributeTextContent(Node node, String attiribute_name)
  2. getAttributeUri(Element leaf, Element parent, String defaultBaseUri)
  3. getAttributeValue(@Nonnull final Element aElement, @Nonnull final String sAttrName)
  4. getAttributeValue(Element e, String key)
  5. getAttributeValue(Element e, String name)
  6. getAttributeValue(Element el, String attributeName)
  7. getAttributeValue(Element el, String attrName)
  8. getAttributeValue(Element ele, String attrName)
  9. getAttributeValue(Element elem, String name)