Uses of Interface
org.apache.pivot.wtk.text.validation.Validator

Packages that use Validator
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
org.apache.pivot.wtk.text.validation Provides classes for validating user-entered text. 
 

Uses of Validator in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return Validator
 Validator TextInput.getValidator()
          Gets the validator associated with this text input.
 

Methods in org.apache.pivot.wtk with parameters of type Validator
 void TextInput.setValidator(Validator validator)
          Sets the validator associated with this text input.
 void TextInputListener.textValidatorChanged(TextInput textInput, Validator previousValidator)
          Called when the validator changes.
 void TextInputListener.Adapter.textValidatorChanged(TextInput textInput, Validator previousValidator)
           
 

Uses of Validator in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type Validator
 void TerraTextInputSkin.textValidatorChanged(TextInput textInput, Validator previousValidator)
           
 

Uses of Validator in org.apache.pivot.wtk.text.validation
 

Classes in org.apache.pivot.wtk.text.validation that implement Validator
 class DecimalValidator
          A validator for decimal values.
 class DoubleRangeValidator
          A validator for a double value limited to a range.
 class DoubleValidator
          A validator for a double value.
 class FloatRangeValidator
          A validator for a float value limited to a range.
 class FloatValidator
          A validator for a float value.
 class FormattedValidator<F extends Format>
          A validator for a Format'ed value.
 class IntRangeValidator
          A validator for an int value limited to a range.
 class IntValidator
          A validator for an int value.
 class RegexTextValidator
          A validator for a regular expression.