org.w3c.dom.html
Interface HTMLDOMImplementation
- DOMImplementation
public interface HTMLDOMImplementation
extends DOMImplementation
The HTMLDOMImplementation
interface extends the
DOMImplementation
interface with a method for creating an
HTML document instance.
HTMLDocument | createHTMLDocument(String title) - Creates an
HTMLDocument object with the minimal tree made
of the following elements: HTML , HEAD ,
TITLE , and BODY .
|
createHTMLDocument
public HTMLDocument createHTMLDocument(String title)
Creates an HTMLDocument
object with the minimal tree made
of the following elements: HTML
, HEAD
,
TITLE
, and BODY
.
title
- The title of the document to be set as the content of the
TITLE
element, through a child Text
node.
- A new
HTMLDocument
object.
Copyright B) 1999-2005 Apache XML Project. All Rights Reserved.