Interface MathMLApplyElement

    • Method Detail

      • getOperator

        MathMLElement getOperator()
        The MathML element representing the function or operator that is applied to the list of arguments.
        Returns:
        value of the operator attribute.
      • setOperator

        void setOperator​(MathMLElement operator)
        setter for the operator attribute.
        Parameters:
        operator - new value for operator.
        See Also:
        getOperator()
      • getLowLimit

        MathMLElement getLowLimit()
        This attribute represents the lowlimit child element of this node (if any). This expresses, for instance, the lower limit of integration if this is an apply element whose first child is a int. See .
        Returns:
        value of the lowLimit attribute.
      • setLowLimit

        void setLowLimit​(MathMLElement lowLimit)
        setter for the lowLimit attribute.
        Parameters:
        lowLimit - new value for lowLimit.
        Throws:
        DOMException - HIERARCHY_REQUEST_ERR: Raised if this element does not permit a child lowlimit element. In particular, raised if this element is not an apply element whose first child is an int, sum, product, or limit element.
        See Also:
        getLowLimit()
      • getUpLimit

        MathMLElement getUpLimit()
        This attribute represents the uplimit child element of this node (if any). This expresses, for instance, the upper limit of integration if this is an apply element whose first child is a int. See .
        Returns:
        value of the upLimit attribute.
      • setUpLimit

        void setUpLimit​(MathMLElement upLimit)
        setter for the upLimit attribute.
        Parameters:
        upLimit - new value for upLimit.
        Throws:
        DOMException - HIERARCHY_REQUEST_ERR: Raised if this element does not permit a child uplimit element. In particular, raised if this element is not an apply element whose first child is an int, sum, or product element.
        See Also:
        getUpLimit()