FileDocCategorySizeDatePackage
HTMLDOMImplementation.javaAPI DocJava SE 5 API1523Fri Aug 26 14:58:40 BST 2005org.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.

See also the Document Object Model (DOM) Level 2 Specification.

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.