org.w3c.dom.html
Interface HTMLDOMImplementation

All Superinterfaces:
DOMImplementation

public interface HTMLDOMImplementation
extends 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 HTML Specification.

Since:
DOM Level 2

Method Summary
 HTMLDocument createHTMLDocument(String title)
          Creates an HTMLDocument object with the minimal tree made of the following elements: HTML, HEAD, TITLE, and BODY.
 
Methods inherited from interface org.w3c.dom.DOMImplementation
createDocument, createDocumentType, hasFeature
 

Method Detail

createHTMLDocument

public HTMLDocument createHTMLDocument(String title)
Creates an HTMLDocument object with the minimal tree made of the following elements: HTML, HEAD, TITLE, and BODY.

Returns:
A new HTMLDocument object.