Here you can find the source of getElementId(Element element)
public static String getElementId(Element element)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Element; public class Main { public static String getElementId(Element element) { return element.getAttribute("id"); }//from w w w . j av a2 s .c o m }