Package org.pdtextensions.core.launch.environment

Examples of org.pdtextensions.core.launch.environment.Environment


  /* (non-Javadoc)
   * @see org.pdtextensions.core.launch.ScriptLauncherInterface#getLauncher(java.lang.String, org.eclipse.core.resources.IProject)
   */
  @Override
  public ScriptLauncher getLauncher(String factoryId, IProject project) throws ScriptNotFoundException, ExecutableNotFoundException {
    Environment env = getEnvironment(factoryId, project);
    if (env == null) {
      throw new ExecutableNotFoundException("Can't find any executable");
    }
   
    return new ScriptLauncher(env, project);
View Full Code Here

TOP

Related Classes of org.pdtextensions.core.launch.environment.Environment

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.