I have class Probability
. I want use custom renderer for it (already done) and double like editor. But I can't even find double editor (only Number), so I really have no idea how I should implement it. The question is: how I should implement it?
*difference from double editor: it should permit only numbers in range 0..100
What about a JFormattedTextField
with an AbstractFormatter doing the conversion, and a DocumentFilter to reject anything which is not a valid percentage value?
Here is an example DocumentFilter (not tested, from reading the documentation):
class PercentageFilter extends DocumentFilter {
insertString(FilterBypass bp, int offset, String adding, AttributeSet attrs) {
Document doc = bp.getDocument();
String text = doc.getText(0, offset) + adding + doc.getText(offset, doc.getLength()-offset);
try {
double d = Double.parseDouble(text);
if(d < 0 || 100 < d) {
// to big or too small number
return;
}
}
catch(NumberFormatException ex) {
// invalid number, do nothing.
return;
}
// if we come to this point, the entered number
// is a valid value => really insert it into the document.
bp.insertString(offset, adding, attrs);
}
}
You would want to override remove()
and replace
similarly.
(I suppose there could be a more efficient implementation, but this will be fast enough for most user's typing speed, I suppose.)
This filter would be returned from your AbstractFormatter implementation's getDocumentFilter
method.
..numbers in range 0..100
Use a JSpinner
as the TableCellEditor
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With