int line = -1;
String xpath = "XPATH: " + getXPath();
if (this instanceof Element) {
Location loc = ((Element) this).getLocation();
if (loc != null) {
line = loc.getLineNumber();
column = loc.getColumnNumber();
}
}
String location = null;
if (line >= 0) {