Interface HTMLDOMImplementation

  • All Superinterfaces:
    org.w3c.dom.DOMImplementation

    public interface HTMLDOMImplementation
    extends org.w3c.dom.DOMImplementation
    The HTMLDOMImplementation interface extends the DOMImplementation interface with a method for creating an HTML document instance.
    Since:
    DOM Level 2
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.w3c.dom.html.HTMLDocument createHTMLDocument​(java.lang.String title)
      Creates an HTMLDocument object with the minimal tree made of the following elements: HTML , HEAD , TITLE , and BODY .
      • Methods inherited from interface org.w3c.dom.DOMImplementation

        createDocument, createDocumentType, getFeature, hasFeature
    • Method Detail

      • createHTMLDocument

        org.w3c.dom.html.HTMLDocument createHTMLDocument​(java.lang.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.