* @return A NodeList, should never be null.
*/
public NodeList selectNodeList(Node contextNode, String str)
{
try {
XPath path = new XPath(str);
List list = path.selectNodes((Object)contextNode);
return new NodeListEx(list);
} catch (Exception e){
// ignore it
}
return new NodeListEx();