public interface TextFieldVerifierImp
TextFieldVerifierImp
interface specifies methods
that a TextFieldVerifier
requires to perform the verification.Modifier and Type | Method and Description |
---|---|
void |
resetText(javax.swing.JTextField field)
Resets the text in the field to a valid value.
|
void |
textChanged(javax.swing.JTextField field)
Handles a change in text in the field.
|
boolean |
verifyText(javax.swing.JTextField field)
Verifies that the text in the field is valid.
|
boolean verifyText(javax.swing.JTextField field)
field
- the text field to check.void resetText(javax.swing.JTextField field)
field
- the text field to check.void textChanged(javax.swing.JTextField field)
field
- the text field to take action on.