New issue 29 by mathieu.carbou: More iteration abilities
http://code.google.com/p/xmltool/issues/detail?id=29
amongst callbask, having the ability to iterate, like any collection, over
selected elements
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
Comment #1 on issue 29 by mathieu.carbou: More iteration abilities
http://code.google.com/p/xmltool/issues/detail?id=29
Added method getChilds() and getChilds(xpath) to create an iterable object
over
selected elements.
Example:
for (XMLTag xmlTag : tag.getChilds()) {
System.out.println(xmlTag.getCurrentTagName());
Comment #2 on issue 29 by mathieu.carbou: More iteration abilities
http://code.google.com/p/xmltool/issues/detail?id=29
(No comment was entered for this change.)
That will make my job easier.
I'll change my project to use this new iteration and run some tests.
Thank you.