FileDocCategorySizeDatePackage
HTMLDOMImplementation.javaAPI DocJava SE 6 API1389Tue Jun 10 00:27:34 BST 2008org.w3c.dom.html

HTMLDOMImplementation

public interface HTMLDOMImplementation implements DOMImplementation
The HTMLDOMImplementation interface extends the DOMImplementation interface with a method for creating an HTML document instance.
since
DOM Level 2

Fields Summary
Constructors Summary
Methods Summary
public org.w3c.dom.html.HTMLDocumentcreateHTMLDocument(java.lang.String title)
Creates an HTMLDocument object with the minimal tree made of the following elements: HTML , HEAD , TITLE , and BODY .

param
title The title of the document to be set as the content of the TITLE element, through a child Text node.
return
A new HTMLDocument object.