Package com.google.eclipse.javascript.jstestdriver.core

Examples of com.google.eclipse.javascript.jstestdriver.core.ProjectHelper


    try {
      String initProjectName = configuration.getAttribute(LaunchConfigurationConstants.PROJECT_NAME, "");
      if (initProjectName != null && !"".equals(initProjectName.trim())) {
        // find project
        selectComboItem(projectCombo, initProjectName);
        IProject project = new ProjectHelper().getProject(initProjectName);
        if (project == null || !project.exists()) {
          setErrorMessage(MessageFormat
              .format(
                  "Project named {0} does not exist. Please choose another project.",
                  initProjectName));
View Full Code Here


          EclipseJstdTestResult selected = (EclipseJstdTestResult) currentSelection;
          IProject project = null;
          try {
            String projectName =
                lastLaunchConfiguration.getAttribute(LaunchConfigurationConstants.PROJECT_NAME, "");
            project = new ProjectHelper().getProject(projectName);
          } catch (CoreException e) {
            logger.log(Level.WARNING, "Could not read project name from launch configuration.", e);
          }
          testCaseOpener.openTestSource(project, selected.getResult(), workbenchPage);
          return;
View Full Code Here

TOP

Related Classes of com.google.eclipse.javascript.jstestdriver.core.ProjectHelper

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.