Here you can find the source of getElementStringValue(Element element, String attribute)
public static String getElementStringValue(Element element, String attribute)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Element; public class Main { public static String getElementStringValue(Element element, String attribute) { return element.getAttribute(attribute); }//from w ww . jav a 2 s. c o m }