summaryrefslogtreecommitdiffstats
path: root/src/demos/misc/VersionInfo.java
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-15 23:05:16 +0000
committerKenneth Russel <[email protected]>2009-06-15 23:05:16 +0000
commit935d2596c13371bb745d921dbcb9f05b0c11a010 (patch)
tree7fcc310618ae5a90edc734dc821e75afc0f080aa /src/demos/misc/VersionInfo.java
parente2332d2f2908e68f1e77454c73f329f8ff2b400d (diff)
Deleted obsolete source code in preparation for copying JOGL_2_SANDBOX
on to trunk git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@351 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'src/demos/misc/VersionInfo.java')
-rw-r--r--src/demos/misc/VersionInfo.java58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/demos/misc/VersionInfo.java b/src/demos/misc/VersionInfo.java
deleted file mode 100644
index 589d899..0000000
--- a/src/demos/misc/VersionInfo.java
+++ /dev/null
@@ -1,58 +0,0 @@
-
-package demos.misc;
-
-/**
- * VersionInfo.java <BR>
- * author: Travis Bryson <P>
- *
- * This program returns the version and implementation information for the Java
- * Bindings for OpenGL (R) implementation found in the CLASSPATH. This information
- * is also found in the manifest for jogl.jar, and this program uses the
- * java.lang.Package class to retrieve it programatically.
-**/
-
-public class VersionInfo {
- public VersionInfo() {
- ClassLoader classLoader = getClass().getClassLoader();
- pkgInfo(classLoader, "javax.media.opengl", "GL");
- }
-
- static void pkgInfo(ClassLoader classLoader,
- String pkgName,
- String className) {
-
- try {
- classLoader.loadClass(pkgName + "." + className);
-
- Package p = Package.getPackage(pkgName);
- if (p == null) {
- System.out.println("WARNING: Package.getPackage(" +
- pkgName +
- ") is null");
- }
- else {
- System.out.println(p);
- System.out.println("Specification Title = " +
- p.getSpecificationTitle());
- System.out.println("Specification Vendor = " +
- p.getSpecificationVendor());
- System.out.println("Specification Version = " +
- p.getSpecificationVersion());
-
- System.out.println("Implementation Vendor = " +
- p.getImplementationVendor());
- System.out.println("Implementation Version = " +
- p.getImplementationVersion());
- }
- }
- catch (ClassNotFoundException e) {
- System.out.println("Unable to load " + pkgName);
- }
-
- System.out.println();
- }
-
- public static void main(String[] args) {
- new VersionInfo();
- }
-}