1 19 20 package org.netbeans.tax.dom; 21 22 import org.w3c.dom.*; 23 24 28 class DOMImplementationImpl implements DOMImplementation { 29 30 31 public DOMImplementationImpl() { 32 } 33 34 69 public Document createDocument(String namespaceURI, String qualifiedName, DocumentType doctype) throws DOMException { 70 throw new ROException(); 71 } 72 73 98 public DocumentType createDocumentType(String qualifiedName, String publicId, String systemId) throws DOMException { 99 throw new ROException(); 100 } 101 102 117 public boolean hasFeature(String feature, String version) { 118 return "1.0".equals(version); 119 } 120 121 public Object getFeature (String a, String b) { 122 throw new UOException (); 123 } 124 125 } 126 | Popular Tags |