Version information.
Note that this class is static.
Definition at line 23 of file Version.java.
The build version
Definition at line 48 of file Version.java.
50 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
51 Native.getVersion(major, minor, build, revision);
The major version
Definition at line 28 of file Version.java.
30 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
31 Native.getVersion(major, minor, build, revision);
The minor version
Definition at line 38 of file Version.java.
40 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
41 Native.getVersion(major, minor, build, revision);
static int getRevision |
( |
| ) |
|
|
inlinestatic |
The revision
Definition at line 58 of file Version.java.
60 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
61 Native.getVersion(major, minor, build, revision);
62 return revision.value;
static String getString |
( |
| ) |
|
|
inlinestatic |
A string representation of the version information.
Definition at line 68 of file Version.java.
70 Native.IntPtr major =
new Native.IntPtr(), minor =
new Native.IntPtr(), build =
new Native.IntPtr(), revision =
new Native.IntPtr();
71 Native.getVersion(major, minor, build, revision);
72 return Integer.toString(major.value) +
"." + Integer.toString(minor.value) +
"."
73 + Integer.toString(build.value) +
"." + Integer.toString(revision.value);