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 68 public interface XUpdateQuery extends Serializable { 69 70 public void setQString(String qstring) throws Exception ; 71 72 73 public void setNamespace(Node namespace) throws Exception ; 74 75 76 public void setNodeFilter(NodeFilter filter) throws Exception ; 77 78 79 84 public void execute(Node rootNode) throws Exception ; 85 86 } 87 | Popular Tags |