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 Specification.
- Since:
- DOM Level 2
createHTMLDocument
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
- 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.
Submit a bug or feature
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.