Uses of Class
au.id.jericho.lib.html.FormControlType

Uses of FormControlType in au.id.jericho.lib.html
 

Fields in au.id.jericho.lib.html declared as FormControlType
static FormControlType FormControlType.BUTTON
          The form control type given to a submit button control implemented using a BUTTON element.
static FormControlType FormControlType.CHECKBOX
          The form control type given to a checkbox control.
static FormControlType FormControlType.FILE
          The form control type given to a file select control.
static FormControlType FormControlType.HIDDEN
          The form control type given to a hidden control.
static FormControlType FormControlType.IMAGE
          The form control type given to a submit button control implemented using an INPUT element with attribute type="image".
static FormControlType FormControlType.PASSWORD
          The form control type given to a text input control implemented using an INPUT element with attribute type="password".
static FormControlType FormControlType.RADIO
          The form control type given to a radio button control.
static FormControlType FormControlType.SELECT_MULTIPLE
          The form control type given to a menu control implemented using a SELECT element containing the attribute "multiple".
static FormControlType FormControlType.SELECT_SINGLE
          The form control type given to a menu control implemented using a SELECT element that does not contain the attribute "multiple".
static FormControlType FormControlType.SUBMIT
          The form control type given to a submit button control implemented using an INPUT element with attribute type="submit".
static FormControlType FormControlType.TEXT
          The form control type given to a text input control implemented using an INPUT element with attribute type="text".
static FormControlType FormControlType.TEXTAREA
          The form control type given to a text input control implemented using a TEXTAREA element.
 

Methods in au.id.jericho.lib.html that return FormControlType
 FormControlType FormControl.getFormControlType()
          Returns the type of this form control.