Home | History | Annotate | Download | only in widget

Lines Matching defs:Validator

115     private Validator mValidator = null;
1145 * Sets the validator used to perform text validation.
1147 * @param validator The validator used to validate the text entered in this widget.
1152 public void setValidator(Validator validator) {
1153 mValidator = validator;
1157 * Returns the Validator set with {@link #setValidator},
1160 * @see #setValidator(android.widget.AutoCompleteTextView.Validator)
1163 public Validator getValidator() {
1168 * If a validator was set on this view and the current string is not valid,
1169 * ask the validator to fix it.
1172 * @see #setValidator(android.widget.AutoCompleteTextView.Validator)
1205 public interface Validator {