diff options
author | Sven Gothel <[email protected]> | 2010-11-12 00:19:44 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-12 00:19:44 +0100 |
commit | b735755815312b5fe2c003642de60711be1cd645 (patch) | |
tree | bd794e0e81df7e651a5070b1bda7b87da31e0024 /src/junit/com | |
parent | a70920d7509daf12b9da47b526b941054a82b708 (diff) |
New: JogampVersion, providing generic information for Jogamp JAR archives; VersionInfo -> GlueGenVersion
JogampVersion, providing generic information for Jogamp JAR archives
Accessor to the Jogamp specific manifest additions, ie branch and commit.
Also provides convenient attribute access and version dump methods.
Diffstat (limited to 'src/junit/com')
-rw-r--r-- | src/junit/com/jogamp/common/util/TestVersionInfo.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/util/TestVersionInfo.java b/src/junit/com/jogamp/common/util/TestVersionInfo.java index abfbee1..da05e6b 100644 --- a/src/junit/com/jogamp/common/util/TestVersionInfo.java +++ b/src/junit/com/jogamp/common/util/TestVersionInfo.java @@ -36,7 +36,11 @@ public class TestVersionInfo { @Test public void testInfo01() { - System.err.println(VersionInfo.getInfo(null, "GlueGen")); + System.err.println("Version Info:"); + System.err.println(GlueGenVersion.getInstance().getInfo(null)); + System.err.println(""); + System.err.println("Full Manifest:"); + System.err.println(GlueGenVersion.getInstance().getFullManifestInfo(null)); } |