Here you can find the source of getStringAttribute(Element el, String attribute)
public static String getStringAttribute(Element el, String attribute)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Element; public class Main { public static String getStringAttribute(Element el, String attribute) { return el.getAttribute(attribute); }//ww w.j av a2s . c o m }