Interface MathMLElement

    • Field Summary

      • Fields inherited from interface org.w3c.dom.Node

        ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getClassName()
      The class attribute of the element.
      java.lang.String getHref()
      The xlink:href attribute of the element.
      java.lang.String getId()
      The element's identifier.
      java.lang.String getMathElementStyle()
      A string identifying the element's style attribute.
      MathMLMathElement getOwnerMathElement()
      The MathMLMathElement corresponding to the nearest math element ancestor of this element.
      java.lang.String getXref()
      The xref attribute of the element.
      void setClassName​(java.lang.String className)
      setter for the className attribute.
      void setHref​(java.lang.String href)
      setter for the href attribute.
      void setId​(java.lang.String id)
      setter for the id attribute.
      void setMathElementStyle​(java.lang.String mathElementStyle)
      setter for the mathElementStyle attribute.
      void setXref​(java.lang.String xref)
      setter for the xref attribute.
      • Methods inherited from interface org.w3c.dom.Element

        getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
      • Methods inherited from interface org.w3c.dom.Node

        appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
    • Method Detail

      • getClassName

        java.lang.String getClassName()
        The class attribute of the element. See the discussion elsewhere in this document of the class attribute; see also the HTML definition of this attribute.
        Returns:
        value of the className attribute.
      • setClassName

        void setClassName​(java.lang.String className)
        setter for the className attribute.
        Parameters:
        className - new value for className.
        See Also:
        getClassName()
      • getMathElementStyle

        java.lang.String getMathElementStyle()
        A string identifying the element's style attribute.
        Returns:
        value of the mathElementStyle attribute.
      • setMathElementStyle

        void setMathElementStyle​(java.lang.String mathElementStyle)
        setter for the mathElementStyle attribute.
        Parameters:
        mathElementStyle - new value for mathElementStyle.
        See Also:
        getMathElementStyle()
      • getId

        java.lang.String getId()
        The element's identifier. See the discussion elsewhere in this document of the id attribute; see also the HTML definition.
        Returns:
        value of the id attribute.
      • setId

        void setId​(java.lang.String id)
        setter for the id attribute.
        Parameters:
        id - new value for id.
        See Also:
        getId()
      • getXref

        java.lang.String getXref()
        The xref attribute of the element. See the discussion elsewhere in this document of the xref attribute.
        Returns:
        value of the xref attribute.
      • setXref

        void setXref​(java.lang.String xref)
        setter for the xref attribute.
        Parameters:
        xref - new value for xref.
        See Also:
        getXref()
      • getHref

        java.lang.String getHref()
        The xlink:href attribute of the element. See the discussion elsewhere in this document of the xlink:href attribute; see also the definition of this attribute in the XLink specification.
        Returns:
        value of the href attribute.
      • setHref

        void setHref​(java.lang.String href)
        setter for the href attribute.
        Parameters:
        href - new value for href.
        See Also:
        getHref()
      • getOwnerMathElement

        MathMLMathElement getOwnerMathElement()
        The MathMLMathElement corresponding to the nearest math element ancestor of this element. Should be null if this element is a top-level math element.
        Returns:
        value of the ownerMathElement attribute.