Common DOM API

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.

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, getFeature, hasFeature
 

Method Detail

createHTMLDocument

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

Parameters:
title - The title of the document to be set as the content of the TITLE element, through a child Text node.
Returns:
A new HTMLDocument object.

Common DOM API

Submit a bug or feature
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 2005, 2012, Oracle and/or its affiliates. 500 Oracle Parkway
Redwood Shores, CA 94065 USA. All rights reserved.