Package com.eclipserunner.views.validators

Examples of com.eclipserunner.views.validators.LaunchConfigurationNameValidator


  }

  private void renameLaunchNode(ILaunchNode node) {
    try {
      String initialValue = node.getLaunchConfiguration().getName();
      InputDialog dialog = openInputDialog(Message_rename, Message_renameLaunchConfiguration, initialValue, new LaunchConfigurationNameValidator(initialValue));
      if (dialog.getReturnCode() == Window.OK) {
        ILaunchConfigurationWorkingCopy workingCopy = node.getLaunchConfiguration().getWorkingCopy();
        workingCopy.rename(dialog.getValue().trim());
        workingCopy.doSave();
      }
View Full Code Here

TOP

Related Classes of com.eclipserunner.views.validators.LaunchConfigurationNameValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.