protected String getTextValue() {
   return config.getValueString();
 }
 protected void setTextValue(String s) {
   config.setValue(s);
 }
 protected Component getTextComponent() {
   if (config == null) {
     config = new FormattedExpressionConfigurer(null, "", "", target);
   }
   return config.getControls();
 }