diff options
author | Sven Gothel <[email protected]> | 2008-07-18 18:21:25 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-19 00:40:24 +0200 |
commit | 574e56f7ebf8b3fbfbf4754458dd718d3a1d0e32 (patch) | |
tree | 386afedb56672cc0955a6a27541c598edba32871 /src | |
parent | a2a218234b3d51a87577df5f4879bfe1917529c0 (diff) |
Cleanup and partitioning of GLU
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/branches/JOGL_2_SANDBOX@1728 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src')
-rw-r--r-- | src/classes/com/sun/opengl/impl/GLReflection.java | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/classes/com/sun/opengl/impl/GLReflection.java b/src/classes/com/sun/opengl/impl/GLReflection.java index 5e55aba..bbcb7c8 100644 --- a/src/classes/com/sun/opengl/impl/GLReflection.java +++ b/src/classes/com/sun/opengl/impl/GLReflection.java @@ -41,6 +41,16 @@ import javax.media.opengl.*; public final class GLReflection { + public static final boolean isClassAvailable(String clazzName) { + try { + Class clazz = Class.forName(clazzName); + if (null!=clazz) { + return true; + } + } catch (Exception e) { } + return false; + } + public static final Constructor getConstructor(String clazzName, Class[] cstrArgTypes) { Class factoryClass = null; Constructor factory = null; @@ -57,7 +67,7 @@ public final class GLReflection { } return factory; } catch (Exception e) { - throw new GLException(e); + throw new GLUnsupportedException(e); } } @@ -72,7 +82,7 @@ public final class GLReflection { factory = getConstructor(clazzName, cstrArgTypes); return factory.newInstance( cstrArgs ) ; } catch (Exception e) { - throw new GLException(e); + throw new GLUnsupportedException(e); } } |