So I have a JFormattedTextField and I need to restrict the user from entering anything but letters and hyphens. I'm not quite sure how to use the MaskFormatter without explicitly knowing the length of the string that is to be entered.
My code currently looks like this:
MaskFormatter formatter = new MaskFormatter();
formatter.setValidCharacters("ABCDEFGHIJKLMNOPQRSTUVWXYZabscedfghijklmnopqrstuvwxyz-");
JFormattedTextField firstNameTextField = new JFormattedTextField(formatter);
When I call firstNameTextField.setText(getName()), the text does not get set, leaving me with an unusable, empty text field.
Any help would be greatly appreciated. Thanks.