Can anyone supply the pros/cons on which of the following code snippets is better to use?
List list = document.selectNodes( "//foo/bar" );
or
XPath xpathSelector = DocumentHelper.createXPath( "//foo/bar" );
List results = xpathSelector.selectNodes(document);
Thanks,
Frank
_______________________________________________
dom4j-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dom4j-user
