final String key, Form.Section section) {
float value = (Float)dictionary.get(key);
TextInput textInput = new TextInput();
textInput.setTextSize(10);
textInput.setValidator(new FloatValidator());
textInput.setText(String.valueOf(value));
section.add(textInput);
Form.setLabel(textInput, key);
textInput.getComponentStateListeners().add(new ComponentStateListener.Adapter() {