Creates new Document objects
Creates new DocType objects
Tests features supported by this implementation
package org.w3c.dom;
public interface DOMImplementation {
public boolean hasFeature(String feature, String version)
public DocumentType createDocumentType(
String qualifiedName,
String publicID, String systemID,
String internalSubset)
public Document createDocument(String namespaceURI,
String qualifiedName, DocumentType doctype)
throws DOMException
}