blob: eb6d73e7e02436d6b6c6d527894c7354647c2eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin;
import java.io.Serializable;
public class Version implements Serializable {
/**
* The version number of this release. For example "6.2.0". Always in the
* format "major.minor.revision[.build]". The build part is optional. All of
* major, minor, revision must be integers.
*/
private static final String VERSION;
/**
* Major version number. For example 6 in 6.2.0.
*/
private static final int VERSION_MAJOR;
/**
* Minor version number. For example 2 in 6.2.0.
*/
private static final int VERSION_MINOR;
/**
* Version revision number. For example 0 in 6.2.0.
*/
private static final int VERSION_REVISION;
/**
* Build identifier. For example "nightly-20091123-c9963" in
* 6.2.0.nightly-20091123-c9963.
*/
private static final String VERSION_BUILD;
/* Initialize version numbers from string replaced by build-script. */
static {
if ("@VERSION@".equals("@" + "VERSION" + "@")) {
VERSION = "9.9.9.INTERNAL-DEBUG-BUILD";
} else {
VERSION = "@VERSION@";
}
final String[] digits = VERSION.split("\\.", 4);
VERSION_MAJOR = Integer.parseInt(digits[0]);
VERSION_MINOR = Integer.parseInt(digits[1]);
VERSION_REVISION = Integer.parseInt(digits[2]);
if (digits.length == 4) {
VERSION_BUILD = digits[3];
} else {
VERSION_BUILD = "";
}
}
public static String getFullVersion() {
return VERSION;
}
public static int getMajorVersion() {
return VERSION_MAJOR;
}
public static int getMinorVersion() {
return VERSION_MINOR;
}
public static int getRevision() {
return VERSION_REVISION;
}
public static String getBuildIdentifier() {
return VERSION_BUILD;
}
}
|