final String key, Form.Section section) {
double value = (Double)dictionary.get(key);
TextInput textInput = new TextInput();
textInput.setTextSize(14);
textInput.setValidator(new DoubleValidator());
textInput.setText(String.valueOf(value));
section.add(textInput);
Form.setLabel(textInput, key);
textInput.getComponentStateListeners().add(new ComponentStateListener.Adapter() {