org.apache.html.dom
public class: HTMLDOMImplementationImpl [javadoc |
source]
java.lang.Object
org.apache.xerces.dom.CoreDOMImplementationImpl
org.apache.xerces.dom.DOMImplementationImpl
org.apache.html.dom.HTMLDOMImplementationImpl
All Implemented Interfaces:
HTMLDOMImplementation, DOMImplementation, DOMImplementationLS
Provides number of methods for performing operations that are independent
of any particular instance of the document object model. This class is
unconstructable, the only way to obtain an instance of a DOM implementation
is by calling the static method
#getDOMImplementation .
Also see:
- org.w3c.dom.DOMImplementation
- xerces.internal:
- version:
$ - Revision: 447255 $ $Date: 2006-09-18 01:36:42 -0400 (Mon, 18 Sep 2006) $
- author:
< - a href="mailto:arkin@exoffice.com">Assaf Arkin
| Methods from org.apache.xerces.dom.CoreDOMImplementationImpl: |
|---|
|
assignDocTypeNumber, assignDocumentNumber, checkQName, createDocument, createDocumentType, createLSInput, createLSOutput, createLSParser, createLSSerializer, getDOMImplementation, getDTDLoader, getFeature, getValidator, hasFeature, releaseDTDLoader, releaseValidator |
| Method from org.apache.html.dom.HTMLDOMImplementationImpl Detail: |
public final HTMLDocument createHTMLDocument(String title) throws DOMException {
HTMLDocument doc;
if ( title == null )
throw new NullPointerException( "HTM014 Argument 'title' is null." );
doc = new HTMLDocumentImpl();
doc.setTitle( title );
return doc;
}
Create a new HTML document of the specified TITLE text. |
public static HTMLDOMImplementation getHTMLDOMImplementation() {
return _instance;
}
Returns an instance of a HTMLDOMImplementation that can be
used to perform operations that are not specific to a particular
document instance, e.g. to create a new document. |