Home | History | Annotate | Download | only in smackx

Lines Matching defs:FormField

37 public class FormField {
59 * Creates a new FormField with the variable name that uniquely identifies the field
64 public FormField(String variable) {
69 * Creates a new FormField of type FIXED. The fields of type FIXED do not define a variable
72 public FormField() {
73 this.type = FormField.TYPE_FIXED;
308 if (!(obj instanceof FormField))
311 FormField other = (FormField) obj;
322 * Represents the available option of a given FormField.