- 
- All Superinterfaces:
- DOMImplementation
 
 public interface HTMLDOMImplementation extends DOMImplementation TheHTMLDOMImplementationinterface extends theDOMImplementationinterface with a method for creating an HTML document instance.- Since:
- 1.4, DOM Level 2
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description HTMLDocumentcreateHTMLDocument(String title)Creates anHTMLDocumentobject with the minimal tree made of the following elements:HTML,HEAD,TITLE, andBODY.- 
Methods declared in interface org.w3c.dom.DOMImplementationcreateDocument, createDocumentType, getFeature, hasFeature
 
- 
 
- 
- 
- 
Method Detail- 
createHTMLDocumentHTMLDocument createHTMLDocument(String title) Creates anHTMLDocumentobject with the minimal tree made of the following elements:HTML,HEAD,TITLE, andBODY.- Parameters:
- title- The title of the document to be set as the content of the- TITLEelement, through a child- Textnode.
- Returns:
- A new HTMLDocumentobject.
 
 
- 
 
-