Initial commit

This commit is contained in:
Erik C. Thauvin 2023-04-27 22:36:49 -07:00
commit c103a85140
30 changed files with 981 additions and 0 deletions

View file

@ -0,0 +1,20 @@
package {{v packageName/}};
import java.util.Date;
/**
* Provides project version information.
*/
public final class {{v className/}} {
public static final int MAJOR = {{v major/}};
public static final int MINOR = {{v minor/}};
public static final int REVISION = {{v revision/}};
public static final String QUALIFIER = "{{v qualifier/}}";
/**
* Disables the default constructor.
*/
private {{v className/}}() {
throw new UnsupportedOperationException("Illegal constructor call.");
}
}