Top Description Methods
org.w3c.dom.html

public Interface HTMLDOMImplementation

extends DOMImplementation
Imports
org.w3c.dom.DOMImplementation

The HTMLDOMImplementation interface extends the DOMImplementation interface with a method for creating an HTML document instance.
Since
1.4, DOM Level 2

Method Summary

Modifier and TypeMethod and Description
public HTMLDocument

Returns:

A new HTMLDocument object.
createHTMLDocument
(String
The title of the document to be set as the content of the TITLE element, through a child Text node.
title
)

Creates an HTMLDocument object with the minimal tree made of the following elements: HTML , HEAD , TITLE , and BODY .

Inherited from org.w3c.dom.DOMImplementation:
createDocumentcreateDocumentTypegetFeaturehasFeature

Method Detail

createHTMLDocumentback to summary
public HTMLDocument createHTMLDocument(String title)

Creates an HTMLDocument object with the minimal tree made of the following elements: HTML , HEAD , TITLE , and BODY .

Parameters
title:String

The title of the document to be set as the content of the TITLE element, through a child Text node.

Returns:HTMLDocument

A new HTMLDocument object.