Uses of Interface
org.w3c.dom.DOMImplementation
| Package | Description | 
|---|---|
| javax.xml.parsers | 
 Provides the classes for processing XML documents with a SAX (Simple API for XML)
 parser or a DOM (Document Object Model) Document builder. | 
| org.w3c.dom | Provides the interfaces for the Document Object Model (DOM). | 
| org.w3c.dom.bootstrap | Provides a factory for obtaining instances of  DOMImplementation. | 
| org.w3c.dom.css | Provides interfaces for DOM Level 2 Style Specification. | 
| org.w3c.dom.html | Provides interfaces for DOM Level 2 HTML Specification. | 
- 
Uses of DOMImplementation in javax.xml.parsersMethods in javax.xml.parsers that return DOMImplementation Modifier and Type Method Description abstract DOMImplementationDocumentBuilder. getDOMImplementation()Obtain an instance of aDOMImplementationobject.
- 
Uses of DOMImplementation in org.w3c.domMethods in org.w3c.dom that return DOMImplementation Modifier and Type Method Description DOMImplementationDOMImplementationSource. getDOMImplementation(String features)A method to request the first DOM implementation that supports the specified features.DOMImplementationDocument. getImplementation()TheDOMImplementationobject that handles this document.DOMImplementationDOMImplementationList. item(int index)Returns theindexth item in the collection.
- 
Uses of DOMImplementation in org.w3c.dom.bootstrapMethods in org.w3c.dom.bootstrap that return DOMImplementation Modifier and Type Method Description DOMImplementationDOMImplementationRegistry. getDOMImplementation(String features)Return the first implementation that has the desired features, ornullif none is found.
- 
Uses of DOMImplementation in org.w3c.dom.cssSubinterfaces of DOMImplementation in org.w3c.dom.css Modifier and Type Interface Description interfaceDOMImplementationCSSThis interface allows the DOM user to create aCSSStyleSheetoutside the context of a document.
- 
Uses of DOMImplementation in org.w3c.dom.htmlSubinterfaces of DOMImplementation in org.w3c.dom.html Modifier and Type Interface Description interfaceHTMLDOMImplementationTheHTMLDOMImplementationinterface extends theDOMImplementationinterface with a method for creating an HTML document instance.