1 package org.xmldb.common.xml.queries; 2 54 55 import org.w3c.dom.Node ; 56 import org.w3c.dom.traversal.NodeFilter; 57 58 import java.io.Serializable ; 59 60 61 69 public interface XPathQuery extends Serializable { 70 71 public void setQString(String qstring) throws Exception ; 72 73 74 public void setNamespace(Node namespace) throws Exception ; 75 76 77 public void setNodeFilter(NodeFilter filter) throws Exception ; 78 79 80 86 public XObject execute(Node rootNode) throws Exception ; 87 88 } 89 | Popular Tags |