Package org.w3c.dom.mathml
Interface MathMLDOMImplementation
- All Superinterfaces:
DOMImplementation
This interface extends the DOMImplementation interface by adding a method
to create a MathMLDocument.
-
Method Summary
Modifier and TypeMethodDescriptionCreates 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 Details
-
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.
-