I want to have two textfields which will have the following validations

  1. Both should be Integers
  2. The value in one textfield should be a integer multiple of other

I have used two JFormattedTextFields to this. This is what i have done till now

NumberFormat updateFormat,sampleFormat;
updateFormat = NumberFormat.getNumberInstance();
updateFormat.setMaximumFractionDigits(0);
updateFormat.setParseIntegerOnly(true);
sampleFormat = NumberFormat.getNumberInstance();
sampleFormat.setMaximumFractionDigits(0);
sampleFormat.setParseIntegerOnly(true);
javax.swing.JFormattedTextField jFormattedTextField1 =new javax.swing.JFormattedTextField(updateFormat);        
javax.swing.JFormattedTextField jFormattedTextField2 = new javax.swing.JFormattedTextField(sampleFormat);

With the help of this my first part is complete Now I am stuck with the second part, i.e. jFormattedTextField1 value should be a Integer multiple of jFormattedTextField2. I think I need to customize my NumberFormat by extending it. But How should I do that? Please help me out

link|improve this question

14% accept rate
1  
@mKorbel: thanks for the warning. This will be noted if he asks questions again here in the future. – Hovercraft Full Of Eels Aug 6 '11 at 16:17
You should specify what you want to happen on violating either rule with respect to, e.g. truncation, navigation, notification, etc. – trashgod Aug 6 '11 at 18:07
@trashgod For both the rule I initially wanted a notification but I think I can manage with truncation also – Gunjan Nigam Aug 8 '11 at 5:22
You're right to deliberate among alternatives; see also this article. – trashgod Aug 8 '11 at 5:30
show 1 more comment
feedback

2 Answers

Also consider using an InputVerifier, as discussed in Validating Input.

link|improve this answer
Thanks that looks like a good answer. I will try to use this – Gunjan Nigam Aug 8 '11 at 5:21
feedback

NumberFormat won't work for the "second" part of your problem since the limitation isn't a data format limitation but rather a data value limitation. I think that you will need to use a DocumentFilter for the second part. To learn more on how to use these, please have a look here: Implementing a Document Filter

link|improve this answer
you pointed out a good point that I have to put a data value limitation and NumberFormat won't work. I had a look at Document Filter u posted but thought the answer given trashgod to more easy to use. Thanks for the reply – Gunjan Nigam Aug 8 '11 at 6:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.