1 package net.sf.saxon.dom; 2 3 import org.w3c.dom.DOMException ; 4 import org.w3c.dom.DOMImplementation ; 5 import org.w3c.dom.Document ; 6 import org.w3c.dom.DocumentType ; 7 8 12 13 class DOMImplementationImpl implements DOMImplementation { 14 15 22 23 public boolean hasFeature(String feature, String version) { 24 return false; 25 } 26 27 34 35 public Object getFeature(String feature, 36 String version) { 37 return null; 38 } 39 40 41 56 57 public DocumentType createDocumentType(String qualifiedName, 58 String publicId, 59 String systemId) 60 throws DOMException 61 { 62 NodeOverNodeInfo.disallowUpdate(); 63 return null; 64 } 65 66 78 public Document createDocument(String namespaceURI, 79 String qualifiedName, 80 DocumentType doctype) 81 throws DOMException 82 { 83 NodeOverNodeInfo.disallowUpdate(); 84 return null; 85 } 86 87 } 88 89 107 | Popular Tags |