1 package org.ozoneDB.xml.dom4j; 9 10 import org.dom4j.Document; 11 import org.dom4j.Element; 12 import org.dom4j.NodeFactory; 13 import org.dom4j.XPathFactory; 14 import org.ozoneDB.OzoneRemote; 15 16 import java.util.List ; 17 import java.util.Map ; 18 19 24 public interface OzoneDocumentFactory extends NodeFactory, XPathFactory, OzoneRemote { 25 26 public static final String OBJECT_NAME = "DocumentFactory"; 27 28 35 Document createDocument(String name) throws Exception ; 36 37 45 Document createDocument(Element rootElement, String name) throws Exception ; 46 47 50 List getQNames(); 51 52 57 public Map getXPathNamespaceURIs(); 58 59 } 60 | Popular Tags |