Subversion Repositories DevTools

Rev

Rev 866 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
866 mhunt 1
package com.erggroup.buildtool.abt;
2
 
3
public class CompileTargets
4
{
5
 // static fields
6
 // public
7
 // protected
8
 // private
9
 
10
 // fields
11
 // public
12
 // protected
13
 // private
14
 private String compileTarget = "none";
15
 
16
 private CompileTargets( String target )
17
 {
18
   compileTarget = target;
19
 }
20
 
21
 public String getCompileTarget()
22
 {
23
   return compileTarget;
24
 }
25
 
26
  public static final CompileTargets PROD = new CompileTargets( "prod" );
27
  public static final CompileTargets DEBUG = new CompileTargets( "debug" );
28
  public static final CompileTargets ALL = new CompileTargets( "all" );
29
  public static final CompileTargets NONE = new CompileTargets( "none" );
30
}