|
Hi Marko
There isn't currently a way to get the line &
column information for dom4j elements. I've added it to the developer to do list
so if anyone fancies having a go at implementing it that would be cool. Probably
just associating the line & column number with the Element would do for many
use cases.
BTW the source of an Element is often available via
the documents name.
Element element = ..;
String source =
element.getDocument().getName();
James
|
Title: How to get line/column info for elements,attribs,...?
