21 lines
533 B
Text
21 lines
533 B
Text
/*
|
|
* This file is automatically generated.
|
|
* Do not modify! -- ALL CHANGES WILL BE ERASED!
|
|
*/
|
|
|
|
package {{packageName}};
|
|
|
|
import java.util.Date;
|
|
|
|
public final class {{className}} {
|
|
public static final String PROJECT = "{{project}}";
|
|
public static final Date BUILDDATE = new Date({{epoch}}L);
|
|
public static final String VERSION = "{{version}}";
|
|
|
|
/**
|
|
* Disables the default constructor.
|
|
*/
|
|
private {{className}}() {
|
|
throw new UnsupportedOperationException("Illegal constructor call.");
|
|
}
|
|
}
|