Interface ComboboxRole

All Superinterfaces:
CompositeRole, GroupRole, InputRole, Role, SectionRole, SelectRole, StructureRole, WidgetRole
All Known Implementing Classes:
ComboboxRoleImpl

public interface ComboboxRole extends SelectRole
A type that represents the combobox role in the ARIA specification.
See Also:
  • Method Details

    • getAriaAutocompleteProperty

      String getAriaAutocompleteProperty(Element element)
      Returns the value of the aria-autocomplete attribute for the element or "" if no such attribute is present.
    • getAriaRequiredProperty

      String getAriaRequiredProperty(Element element)
      Returns the value of the aria-required attribute for the element or "" if no such attribute is present.
    • removeAriaAutocompleteProperty

      void removeAriaAutocompleteProperty(Element element)
      Removes the aria-autocomplete attribute from the element.
    • removeAriaRequiredProperty

      void removeAriaRequiredProperty(Element element)
      Removes the aria-required attribute from the element.
    • setAriaAutocompleteProperty

      void setAriaAutocompleteProperty(Element element, AutocompleteValue value)
      Sets the aria-autocomplete attribute for the element to the given value.
    • setAriaRequiredProperty

      void setAriaRequiredProperty(Element element, boolean value)
      Sets the aria-required attribute for the element to the given value.