Exemplo n.º 1
0
 public static IVMInstall createLauncher(ILaunchConfiguration configuration) throws CoreException {
   IVMInstall launcher = getVMInstall(configuration);
   if (!launcher.getInstallLocation().exists())
     throw new CoreException(
         LauncherUtils.createErrorStatus(
             MDEMessages.WorkbenchLauncherConfigurationDelegate_jrePathNotFound));
   return launcher;
 }