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

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

Uses of Validator in pivot.wtk
 

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

Methods in 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.
 

Uses of Validator in pivot.wtk.skin.terra
 

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

Uses of Validator in pivot.wtk.text.validation
 

Classes in 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.