Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
866 mhunt 1
package com.erggroup.buildtool.abt;
2
 
3
public class BuildStandards
4
{
5
 // static fields
6
 // public
7
 // protected
8
 // private
9
 
10
 // fields
11
 // public
12
 // protected
13
 // private
14
 private String buildStandard = "jats";
15
 
16
 private BuildStandards( String standard )
17
 {
18
   buildStandard = standard;
19
 }
20
 
21
 public String getBuildStandard()
22
 {
23
   return buildStandard;
24
 }
25
 
26
  public static final BuildStandards JATS = new BuildStandards( "jats" );
27
  public static final BuildStandards ANT = new BuildStandards( "ant" );
28
}