Interface MathMLDOMImplementation

  • All Superinterfaces:
    org.w3c.dom.DOMImplementation

    public interface MathMLDOMImplementation
    extends org.w3c.dom.DOMImplementation
    This interface extends the DOMImplementation interface by adding a method to create a MathMLDocument.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      MathMLDocument createMathMLDocument()
      Creates a MathMLDocument with a minimal tree containing only a MathMLMathElement corresponding to a MathML math element.
      • Methods inherited from interface org.w3c.dom.DOMImplementation

        createDocument, createDocumentType, getFeature, hasFeature
    • Method Detail

      • createMathMLDocument

        MathMLDocument createMathMLDocument()
        Creates a MathMLDocument with a minimal tree containing only a MathMLMathElement corresponding to a MathML math element. The MathMLMathElement is empty, having no child elements or non-default attributes; it is the root element of the document, and is the element accessed via the documentElement attribute of the MathMLDocument. Note that a MathMLDocument object should only be created for a stand-alone MathML document.
        Returns:
        The MathMLDocument created.