public void reset() {
   RunnerAndConfigurationSettings configuration = getSettings();
   if (configuration != null) {
     setNameText(configuration.getName());
   }
   super.reset();
 }
 public void apply() throws ConfigurationException {
   getSettings().setName(getNameText());
   super.apply();
 }
 public final void disposeUIResources() {
   super.disposeUIResources();
   myComponent = null;
 }