All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.aria.client.OptionRole Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2012 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

package com.google.gwt.aria.client;
/////////////////////////////////////////////////////////
// This is auto-generated code.  Do not manually edit! //
/////////////////////////////////////////////////////////

import com.google.gwt.dom.client.Element;

/**
 * A type that represents the option
 * role in the ARIA specification.
 *
 * @see Role
 * @see Roles
 */
public interface OptionRole extends InputRole {
  /**
   * Returns the value of the
   * 
   * aria-checked attribute for the {@code element} or "" if no
   * such attribute is present.
   */
  String getAriaCheckedState(Element element);

  /**
   * Returns the value of the
   * 
   * aria-posinset attribute for the {@code element} or "" if no
   * such attribute is present.
   */
  String getAriaPosinsetProperty(Element element);

  /**
   * Returns the value of the
   * 
   * aria-selected attribute for the {@code element} or "" if no
   * such attribute is present.
   */
  String getAriaSelectedState(Element element);

  /**
   * Returns the value of the
   * 
   * aria-setsize attribute for the {@code element} or "" if no
   * such attribute is present.
   */
  String getAriaSetsizeProperty(Element element);

  /**
   * Removes the
   * 
   * aria-checked attribute from the {@code element}.
   */
  void removeAriaCheckedState(Element element);

  /**
   * Removes the
   * 
   * aria-posinset attribute from the {@code element}.
   */
  void removeAriaPosinsetProperty(Element element);

  /**
   * Removes the
   * 
   * aria-selected attribute from the {@code element}.
   */
  void removeAriaSelectedState(Element element);

  /**
   * Removes the
   * 
   * aria-setsize attribute from the {@code element}.
   */
  void removeAriaSetsizeProperty(Element element);

  /**
   * Sets the
   * 
   * aria-checked attribute for the {@code element} to the given {@code value}.
   */
  void setAriaCheckedState(Element element, CheckedValue value);

  /**
   * Sets the
   * 
   * aria-posinset attribute for the {@code element} to the given {@code value}.
   */
  void setAriaPosinsetProperty(Element element, int value);

  /**
   * Sets the
   * 
   * aria-selected attribute for the {@code element} to the given {@code value}.
   */
  void setAriaSelectedState(Element element, SelectedValue value);

  /**
   * Sets the
   * 
   * aria-setsize attribute for the {@code element} to the given {@code value}.
   */
  void setAriaSetsizeProperty(Element element, int value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy