1 package com.proalpha.pds.gitutils.checks;
3 import org.eclipse.core.commands.AbstractHandler;
4 import org.eclipse.core.commands.ExecutionEvent;
5 import org.eclipse.core.commands.ExecutionException;
6 import org.eclipse.core.runtime.jobs.Job;
11 public Object execute(ExecutionEvent event)
throws ExecutionException {
16 String relativeCompFile = String.format(
"delta_branchfiles.inp");
19 options.type = CompileType.DELTA;
20 options.compilerInputFileName = relativeCompFile;
22 Job compileJob =
new CompileJob(
"Delta compile - collect files to compile",
23 repositoryTools, options);
24 compileJob.setUser(
true);
26 compileJob.schedule();