Stores a name and a value in the control. GUI controls will usually display the name followed by an equal sign followed by the toString<\code> representation of the object. @param name @param val
(String name, Object val)
| 35 | * @param val |
| 36 | */ |
| 37 | public void setValue(String name, Object val); |
| 38 | |
| 39 | default public void setValue(String name, double[] val, int decimalPlaces) { |
| 40 | setValue(name, val); |
no outgoing calls