Package org.w3c.dom.html
Interface HTMLDOMImplementation
-
- All Superinterfaces:
org.w3c.dom.DOMImplementation
public interface HTMLDOMImplementation extends org.w3c.dom.DOMImplementationTheHTMLDOMImplementationinterface extends theDOMImplementationinterface with a method for creating an HTML document instance.- Since:
- DOM Level 2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.w3c.dom.html.HTMLDocumentcreateHTMLDocument(java.lang.String title)Creates anHTMLDocumentobject with the minimal tree made of the following elements:HTML,HEAD,TITLE, andBODY.
-
-
-
Method Detail
-
createHTMLDocument
org.w3c.dom.html.HTMLDocument createHTMLDocument(java.lang.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 theTITLEelement, through a childTextnode.- Returns:
- A new
HTMLDocumentobject.
-
-