Interface RangeRole

All Superinterfaces:
Role, WidgetRole
All Known Subinterfaces:
ProgressbarRole, ScrollbarRole, SliderRole, SpinbuttonRole
All Known Implementing Classes:
ProgressbarRoleImpl, ScrollbarRoleImpl, SliderRoleImpl, SpinbuttonRoleImpl

public interface RangeRole extends WidgetRole
A type that represents the range role in the ARIA specification.
See Also:
  • Method Details

    • getAriaValuemaxProperty

      String getAriaValuemaxProperty(Element element)
      Returns the value of the aria-valuemax attribute for the element or "" if no such attribute is present.
    • getAriaValueminProperty

      String getAriaValueminProperty(Element element)
      Returns the value of the aria-valuemin attribute for the element or "" if no such attribute is present.
    • getAriaValuenowProperty

      String getAriaValuenowProperty(Element element)
      Returns the value of the aria-valuenow attribute for the element or "" if no such attribute is present.
    • getAriaValuetextProperty

      String getAriaValuetextProperty(Element element)
      Returns the value of the aria-valuetext attribute for the element or "" if no such attribute is present.
    • removeAriaValuemaxProperty

      void removeAriaValuemaxProperty(Element element)
      Removes the aria-valuemax attribute from the element.
    • removeAriaValueminProperty

      void removeAriaValueminProperty(Element element)
      Removes the aria-valuemin attribute from the element.
    • removeAriaValuenowProperty

      void removeAriaValuenowProperty(Element element)
      Removes the aria-valuenow attribute from the element.
    • removeAriaValuetextProperty

      void removeAriaValuetextProperty(Element element)
      Removes the aria-valuetext attribute from the element.
    • setAriaValuemaxProperty

      void setAriaValuemaxProperty(Element element, Number value)
      Sets the aria-valuemax attribute for the element to the given value.
    • setAriaValueminProperty

      void setAriaValueminProperty(Element element, Number value)
      Sets the aria-valuemin attribute for the element to the given value.
    • setAriaValuenowProperty

      void setAriaValuenowProperty(Element element, Number value)
      Sets the aria-valuenow attribute for the element to the given value.
    • setAriaValuetextProperty

      void setAriaValuetextProperty(Element element, String value)
      Sets the aria-valuetext attribute for the element to the given value.