Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 6914 |
dpurdie |
1 |
package com.erggroup.buildtool.abt;
|
|
|
2 |
|
|
|
3 |
public class BuildStandards
|
|
|
4 |
{
|
|
|
5 |
|
|
|
6 |
private String buildStandard = "jats";
|
|
|
7 |
|
|
|
8 |
private BuildStandards( String standard )
|
|
|
9 |
{
|
|
|
10 |
buildStandard = standard;
|
|
|
11 |
}
|
|
|
12 |
|
|
|
13 |
public String getBuildStandard()
|
|
|
14 |
{
|
|
|
15 |
return buildStandard;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
public static final BuildStandards JATS = new BuildStandards( "jats" );
|
|
|
19 |
public static final BuildStandards ANT = new BuildStandards( "ant" );
|
|
|
20 |
public static final BuildStandards NONE = new BuildStandards( "none" );
|
|
|
21 |
}
|