Package org.w3c.dom.mathml
Interface MathMLDOMImplementation
-
- All Superinterfaces:
org.w3c.dom.DOMImplementation
public interface MathMLDOMImplementation extends org.w3c.dom.DOMImplementationThis 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 MathMLDocumentcreateMathMLDocument()Creates a MathMLDocument with a minimal tree containing only a MathMLMathElement corresponding to a MathML math element.
-
-
-
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.
-
-