return xpath.evaluate(xpathExpression, node, type);
} catch (Exception e) {
return null;
} finally {
if (loader != null) {
loader.reset();
}
}
}
public NodeList getValueList(String xpathExpression, Node node) {
return (NodeList)getValue(xpathExpression, node, XPathConstants.NODESET);