1 8 package org.apache.avalon.excalibur.xml.xpath; 9 10 import org.w3c.dom.Node ; 11 import org.w3c.dom.NodeList ; 12 import org.apache.avalon.framework.component.Component; 13 14 20 public interface XPathProcessor extends Component 21 { 22 25 String ROLE = "org.apache.avalon.excalibur.xml.xpath.XPathProcessor"; 26 27 36 Node selectSingleNode(Node contextNode, String str); 37 38 46 NodeList selectNodeList(Node contextNode, String str); 47 } 48 | Popular Tags |