Interface TextboxRole

All Superinterfaces:
InputRole, Role, WidgetRole
All Known Implementing Classes:
TextboxRoleImpl

public interface TextboxRole extends InputRole
A type that represents the textbox role in the ARIA specification.
See Also:
  • Method Details Link icon

    • getAriaActivedescendantProperty Link icon

      String getAriaActivedescendantProperty(Element element)
      Returns the value of the aria-activedescendant attribute for the element or "" if no such attribute is present.
    • getAriaAutocompleteProperty Link icon

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

      String getAriaMultilineProperty(Element element)
      Returns the value of the aria-multiline attribute for the element or "" if no such attribute is present.
    • getAriaReadonlyProperty Link icon

      String getAriaReadonlyProperty(Element element)
      Returns the value of the aria-readonly attribute for the element or "" if no such attribute is present.
    • getAriaRequiredProperty Link icon

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

      void removeAriaActivedescendantProperty(Element element)
      Removes the aria-activedescendant attribute from the element.
    • removeAriaAutocompleteProperty Link icon

      void removeAriaAutocompleteProperty(Element element)
      Removes the aria-autocomplete attribute from the element.
    • removeAriaMultilineProperty Link icon

      void removeAriaMultilineProperty(Element element)
      Removes the aria-multiline attribute from the element.
    • removeAriaReadonlyProperty Link icon

      void removeAriaReadonlyProperty(Element element)
      Removes the aria-readonly attribute from the element.
    • removeAriaRequiredProperty Link icon

      void removeAriaRequiredProperty(Element element)
      Removes the aria-required attribute from the element.
    • setAriaActivedescendantProperty Link icon

      void setAriaActivedescendantProperty(Element element, Id value)
      Sets the aria-activedescendant attribute for the element to the given value.
    • setAriaAutocompleteProperty Link icon

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

      void setAriaMultilineProperty(Element element, boolean value)
      Sets the aria-multiline attribute for the element to the given value.
    • setAriaReadonlyProperty Link icon

      void setAriaReadonlyProperty(Element element, boolean value)
      Sets the aria-readonly attribute for the element to the given value.
    • setAriaRequiredProperty Link icon

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