org.anarres.cpp.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcpp Show documentation
Show all versions of jcpp Show documentation
An embeddable C Preprocessor for the JVM.
/*
* 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.Nonnull;
/**
* System version metadata for Anarres Java C Preprocessor 1.4.5.
*
* 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 = "1.4.5";
private static final int major;
private static final int minor;
private static final int patch;
static {
String[] tmp = VERSION.split("[\\.-]");
major = Integer.parseInt(tmp[0]);
minor = Integer.parseInt(tmp[1]);
patch = Integer.parseInt(tmp[2]);
}
@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;
}
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());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy