Subversion Repositories DevTools

Rev

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

package com.erggroup.buildtool.abt;

public class CompileTargets
{
 // static fields
 // public
 // protected
 // private
 
 // fields
 // public
 // protected
 // private
 private String compileTarget = "none";

 private CompileTargets( String target )
 {
   compileTarget = target;
 }
 
 public String getCompileTarget()
 {
   return compileTarget;
 }
 
  public static final CompileTargets PROD = new CompileTargets( "prod" );
  public static final CompileTargets DEBUG = new CompileTargets( "debug" );
  public static final CompileTargets ALL = new CompileTargets( "all" );
  public static final CompileTargets NONE = new CompileTargets( "none" );
}