1 12 13 package org.w3c.dom.xpath; 14 15 16 import org.w3c.dom.Node ; 17 import org.w3c.dom.DOMException ; 18 19 37 public interface XPathEvaluator { 38 59 public XPathExpression createExpression(String expression, 60 XPathNSResolver resolver) 61 throws XPathException, DOMException ; 62 63 76 public XPathNSResolver createNSResolver(Node nodeResolver); 77 78 126 public Object evaluate(String expression, 127 Node contextNode, 128 XPathNSResolver resolver, 129 short type, 130 Object result) 131 throws XPathException, DOMException ; 132 133 } 134 | Popular Tags |