| org.w3c.dom.html.HTMLDOMImplementation |
Known Indirect Subclasses
| HTMLDOMImplementationImpl |
Provides number of methods for performing operations that are independent
of any particular instance of the document object model. |
|
Class Overview
The HTMLDOMImplementation interface extends the
DOMImplementation interface with a method for creating an
HTML document instance.
Summary
| Public Methods |
|
abstract
HTMLDocument
|
createHTMLDocument(String title)
Creates an HTMLDocument object with the minimal tree made
of the following elements: HTML , HEAD ,
TITLE , and BODY .
|
|
[Expand]
Inherited Methods |
From interface
org.w3c.dom.DOMImplementation
|
Public Methods
public
abstract
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.