diff options
author | Sven Gothel <[email protected]> | 2015-03-24 03:22:05 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-24 03:22:05 +0100 |
commit | a2bf42eafb8d6bc270f832c6bd49793465a593d4 (patch) | |
tree | b7d091648e7da78cfc8675a1206560469d822fd3 /src/main/velocity | |
parent | 2ed80887326a12a2b47826c5ea0256f1b0c180d5 (diff) |
Complete JogAmp GlueGen merge: Relocate and patch unit test, strip unrelated files, add note in README.md
Diffstat (limited to 'src/main/velocity')
-rw-r--r-- | src/main/velocity/org/anarres/cpp/Version.java | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/src/main/velocity/org/anarres/cpp/Version.java b/src/main/velocity/org/anarres/cpp/Version.java deleted file mode 100644 index cedd6bb..0000000 --- a/src/main/velocity/org/anarres/cpp/Version.java +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Anarres C Preprocessor - * Copyright (c) 2007-2008, Shevek - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -package org.anarres.cpp; - -import javax.annotation.CheckForNull; -import javax.annotation.Nonnull; - -/** - * System version metadata for Anarres Java C Preprocessor ${version}. - * - * This class contains a main() and may be run to print the version. - */ -public class Version { - - /* Don't instantiate me */ - private Version() { - } - - private static final String VERSION = "${version}"; - - private static final int major; - private static final int minor; - private static final int patch; - private static final String modifier; - - static { - String[] tmp = VERSION.split("[\\.-]"); - major = Integer.parseInt(tmp[0]); - minor = Integer.parseInt(tmp[1]); - patch = Integer.parseInt(tmp[2]); - modifier = (tmp.length > 3) ? tmp[3] : null; - } - - @Nonnull - public static String getVersion() { - return VERSION; - } - - public static int getMajor() { - return major; - } - - public static int getMinor() { - return minor; - } - - public static int getPatch() { - return patch; - } - - @CheckForNull - public static String getModifier() { - return modifier; - } - - public static boolean isSnapshot() { - return "SNAPSHOT".equalsIgnoreCase(getModifier()); - } - - public static void main(String[] args) { - System.out.println("Version " + VERSION); - System.out.println("getVersion() returns " + getVersion()); - System.out.println("getMajor() returns " + getMajor()); - System.out.println("getMinor() returns " + getMinor()); - System.out.println("getPatch() returns " + getPatch()); - } - -} |