01: /*
02: * Copyright (c) 2000 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
10: * details.
11: */
12:
13: package org.w3c.dom.html;
14:
15: import org.w3c.dom.DOMImplementation;
16:
17: /**
18: * The <code>HTMLDOMImplementation</code> interface extends the
19: * <code>DOMImplementation</code> interface with a method for creating an
20: * HTML document instance.
21: * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
22: * @since DOM Level 2
23: */
24: public interface HTMLDOMImplementation extends DOMImplementation {
25: /**
26: * Creates an <code>HTMLDocument</code> object with the minimal tree made
27: * of the following elements: <code>HTML</code> , <code>HEAD</code> ,
28: * <code>TITLE</code> , and <code>BODY</code> .
29: * @param title The title of the document to be set as the content of the
30: * <code>TITLE</code> element, through a child <code>Text</code> node.
31: * @return A new <code>HTMLDocument</code> object.
32: */
33: public HTMLDocument createHTMLDocument(String title);
34:
35: }
|