Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
package com.erggroup.buildtool.abt;
2
 
3
public class CompileTargets
4
{
5
 
6
 private String compileTarget = "unspecified";
7
 
8
 private CompileTargets( String target )
9
 {
10
   compileTarget = target;
11
 }
12
 
13
 public String getCompileTarget()
14
 {
15
   return compileTarget;
16
 }
17
 
18
  public static final CompileTargets PROD = new CompileTargets( "prod" );
19
  public static final CompileTargets DEBUG = new CompileTargets( "debug" );
20
  public static final CompileTargets ALL = new CompileTargets( "all" );
21
  public static final CompileTargets NONE = new CompileTargets( "none" );
22
}