I think your best bet is to subclass AbstractFormatter and use a regexp for email, something like:
public class EmailFormatter extends AbstractFormatter {
@Override public Object stringToValue(String string) throws ParseException {
Matcher matcher = regexp.matcher(string);
if (matcher.matches())
return string;
throw new ParseException("Not an email", 0);
}
@Override public String valueToString(Object value) {
return value;
}
final private Pattern regexp = Pattern.compile("EMAIL REGEXP TO FIND BY YOURSELF");
}
...
JFormattedTextField email = new JFormattedTextField(new EmailFormatter());
Note that I let you discover the right regexp for an email; you can the easy way, or if you prefer, check one RFC that describes a one-page long regexp that covers emails as per the real specs, but maybe you can simplify your requirements ;-)