Rev 6914 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.erggroup.buildtool.abt;public class CompileTargets{private String compileTarget = "unspecified";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" );}