Here you can find the source of getAttributePropertyFromElement(final Element element, final String attribute)
public static String getAttributePropertyFromElement(final Element element, final String attribute)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Element; public class Main { public static String getAttributePropertyFromElement(final Element element, final String attribute) { return element.getAttribute(attribute); }/*from w ww . j ava 2s .co m*/ }