I have a JTextField where I want the following validations.
User shouldn't be allowed to enter more than 5 characters, on typing 6th character it should prompt the user about exceeding length and prevent user from typing further.
Irrespective of whether user types in upper case or lower case, the text field should display the text in upper case only.
Integers are not allowed to be input by the text field.
How do I go about it? Any help would be appreciated.
Regards