109110111112113114115116117118119
*/ 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();