01: package jimm.datavision.gui.parameter;
02:
03: import jimm.datavision.Parameter;
04:
05: /**
06: * A single numeric inquisitor knows how to display and control the widgets
07: * needed to ask a user for a numeric parameter value.
08: *
09: * @author Jim Menard, <a href="mailto:jimm@io.com">jimm@io.com</a>
10: */
11: class SingleNumericInq extends SingleStringInq {
12:
13: SingleNumericInq(Parameter param) {
14: super(param);
15: }
16:
17: }
|