//log.debug("XPath will execute against: " + XmlUtils.w3CDomNodeToString(node));
List<JAXBAssociation> resultList = new ArrayList<JAXBAssociation>();
for( Node n : xpath(node, xpathExpr) ) {
resultList.add(new JAXBAssociation(n, binder.getJAXBNode(n)));
}
return resultList;
}