term.setNameComboBox(namedConstCombo);
// TextField Name
final JTextFieldResizing tfName = new HintTextFieldResizing("Name",
"Name", this.parent.getFONT(), this);
tfName.addFocusListener(new FocusAdapter() {
@Override
public void focusLost(final FocusEvent fe) {
term.setTfName(tfName);
}});
// TextField Value
final JTextFieldResizing tfValue = new HintTextFieldResizing(term.getValue(), "Value", this.parent.getFONT(), this);
tfValue.addFocusListener(new FocusAdapter() {
@Override
public void focusLost(final FocusEvent fe) {
term.setValue(tfValue.getText());
}});