From b0582c8a8268032b48b0e78e4db4a4abeb41a94e Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Mon, 27 Jul 2015 12:17:08 +0200
Subject: PlatformPropsImpl: Add static final Version18 and Version19
 VersionNumber

---
 src/java/jogamp/common/os/PlatformPropsImpl.java | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'src')

diff --git a/src/java/jogamp/common/os/PlatformPropsImpl.java b/src/java/jogamp/common/os/PlatformPropsImpl.java
index 0d0063c..097a013 100644
--- a/src/java/jogamp/common/os/PlatformPropsImpl.java
+++ b/src/java/jogamp/common/os/PlatformPropsImpl.java
@@ -63,6 +63,10 @@ public abstract class PlatformPropsImpl {
     public static final VersionNumber Version16;
     /** Version 1.7. As a JVM version, it enables certain JVM 1.7 features. */
     public static final VersionNumber Version17;
+    /** Version 1.8. As a JVM version, it enables certain JVM 1.8 features. */
+    public static final VersionNumber Version18;
+    /** Version 1.9. As a JVM version, it enables certain JVM 1.9 features. */
+    public static final VersionNumber Version19;
 
     public static final String OS;
     public static final String OS_lower;
@@ -101,6 +105,8 @@ public abstract class PlatformPropsImpl {
     static {
         Version16 = new VersionNumber(1, 6, 0);
         Version17 = new VersionNumber(1, 7, 0);
+        Version18 = new VersionNumber(1, 8, 0);
+        Version19 = new VersionNumber(1, 9, 0);
 
         // We don't seem to need an AccessController.doPrivileged() block
         // here as these system properties are visible even to unsigned Applets.
-- 
cgit v1.2.3