Interface MathMLIntervalElement

All Superinterfaces:
Element, MathMLContentElement, MathMLElement, Node

public interface MathMLIntervalElement extends MathMLContentElement
The interval element is used to represent simple mathematical intervals on the real number line. It contains either two child elements that evaluate to real numbers or one child element that is a condition for defining membership in the interval.
  • Method Details

    • getClosure

      String getClosure()
      A string with value open, closed, open-closed or closed-open. The default value is closed.
      Returns:
      value of the closure attribute.
    • setClosure

      void setClosure(String closure)
      setter for the closure attribute.
      Parameters:
      closure - new value for closure.
      See Also:
    • getStart

      A MathMLContentElement representing the real number defining the start of the interval. If end has not already been set, it becomes the same as start until set otherwise.
      Returns:
      value of the start attribute.
    • setStart

      void setStart(MathMLContentElement start)
      setter for the start attribute.
      Parameters:
      start - new value for start.
      See Also:
    • getEnd

      A MathMLContentElement representing the real number defining the end of the interval. If start has not already been set, it becomes the same as end until set otherwise.
      Returns:
      value of the end attribute.
    • setEnd

      void setEnd(MathMLContentElement end)
      setter for the end attribute.
      Parameters:
      end - new value for end.
      See Also: