Eclipseplugins
CompileOptions.java
1 package com.proalpha.pds.gitutils.checks;
2 
3 enum CompileType {
4  NONE, FULL, // Not supported via PDS
5  MINIMAL, // Not supported via PDS
6  DIFF, // Compile all files changed between to given git refs
7  DELTA, // Compile all files changed since last delta ore full compile
8  BRANCH; // Compile all files changed on the branch compared to the min branch
9 }
10 
11 public class CompileOptions {
12 
13  public CompileType type;
14 
15  public String compilerInputFileName;
16 
17  // Options for delta compile
18  public String commit1 = null;
19  public String commit2 = null;
20 }