Examples of IScriptProject


Examples of org.eclipse.dltk.core.IScriptProject

  private Collection<String> getDependencies(ILaunchConfiguration configuration)
          throws CoreException {
    Collection<String> result = new TreeSet<String>();

    IScriptProject scriptProject = AbstractScriptLaunchConfigurationDelegate
            .getScriptProject(configuration);
    IProject[] referencedProjects = scriptProject.getProject().getReferencedProjects();
    for (IProject eachProject : referencedProjects) {
      // for each java project
      extendClasspathWithProject(result, eachProject, new HashSet<IProject>());
    }
    return result;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.