aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/util/JOCLVersion.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/jogamp/opencl/util/JOCLVersion.java')
-rw-r--r--src/com/jogamp/opencl/util/JOCLVersion.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/com/jogamp/opencl/util/JOCLVersion.java b/src/com/jogamp/opencl/util/JOCLVersion.java
new file mode 100644
index 00000000..f4faacef
--- /dev/null
+++ b/src/com/jogamp/opencl/util/JOCLVersion.java
@@ -0,0 +1,65 @@
+/*
+ * Created on Monday, November 15 2010 19:44
+ */
+package com.jogamp.opencl.util;
+
+import com.jogamp.common.GlueGenVersion;
+import com.jogamp.common.os.Platform;
+import com.jogamp.common.util.JogampVersion;
+import com.jogamp.common.util.VersionUtil;
+import java.util.jar.Manifest;
+
+
+/**
+ *
+ * @author Michael Bien
+ */
+public class JOCLVersion extends JogampVersion {
+
+ private static final String PACKAGE = "com.jogamp.opencl";
+
+ private JOCLVersion(Manifest mf) {
+ super(PACKAGE, mf);
+ }
+
+ private static JOCLVersion createInstance(){
+ Manifest manifest = VersionUtil.getManifest(JOCLVersion.class.getClassLoader(), PACKAGE);
+ return new JOCLVersion(manifest);
+ }
+
+ public static String getVersion() {
+ return createInstance().toString();
+ }
+
+ public static String getAllVersions() {
+
+ StringBuilder sb = new StringBuilder();
+
+ sb.append(SEPERATOR).append(Platform.getNewline());
+ sb.append(VersionUtil.getPlatformInfo(null));
+ sb.append(SEPERATOR).append(Platform.getNewline());
+
+ createInstance().toString(sb);
+
+ sb.append(GlueGenVersion.getInstance().toString());
+
+ return sb.toString();
+ }
+
+
+ public StringBuilder toString(StringBuilder sb) {
+ return sb.append(toString((StringBuffer)null));
+ }
+
+ @Override
+ public StringBuffer toString(StringBuffer sb) {
+ if(sb == null) {
+ sb = new StringBuffer();
+ }
+ return super.toString(sb);
+ }
+
+ public static void main(String[] args) {
+ System.out.println(JOCLVersion.getAllVersions());
+ }
+}