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

com.google.gwt.dom.builder.shared.InputBuilder Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2011 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.dom.builder.shared;

/**
 * Builds an input element.
 */
public interface InputBuilder extends ElementBuilderBase {

  /**
   * A comma-separated list of content types that a server processing this form
   * will handle correctly.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder accept(String accept);

  /**
   * A single character access key to give access to the form control.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder accessKey(String accessKey);

  /**
   * Alternate text for user agents not rendering the normal content of this
   * element.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder alt(String alt);

  /**
   * Set the state of the form control to true when type attribute
   * of the element has the value "radio" or "checkbox".
   */
  InputBuilder checked();

  /**
   * Set the default state of the form control to true when type
   * attribute of the element has the value "radio" or "checkbox".
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder defaultChecked();

  /**
   * When the type attribute of the element has the value "text", "file" or
   * "password", this represents the HTML value attribute of the element. The
   * value of this attribute does not change if the contents of the
   * corresponding form control, in an interactive user agent, changes.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder defaultValue(String defaultValue);

  /**
   * Disable the control.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder disabled();

  /**
   * Maximum number of characters for text fields, when type has the value
   * "text" or "password".
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder maxLength(int maxLength);

  /**
   * Form control or object name when submitted with a form.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder name(String name);

  /**
   * Make the control read-only. Relevant only when type has the value "text" or
   * "password".
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder readOnly();

  /**
   * Size information. The precise meaning is specific to each type of field.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder size(int size);

  /**
   * When the type attribute has the value "image", this attribute specifies the
   * location of the image to be used to decorate the graphical submit button.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder src(String src);

  /**
   * When the type attribute of the element has the value "text", "file" or
   * "password", this represents the current contents of the corresponding form
   * control, in an interactive user agent. Changing this attribute changes the
   * contents of the form control, but does not change the value of the HTML
   * value attribute of the element. When the type attribute of the element has
   * the value "button", "hidden", "submit", "reset", "image", "checkbox" or
   * "radio", this represents the HTML value attribute of the element.
   * 
   * @see W3C
   *      HTML Specification
   */
  InputBuilder value(String value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy