diff options
author | Sven Gothel <[email protected]> | 2014-08-06 06:06:01 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-08-06 06:06:01 +0200 |
commit | 5c1214b26ad6c877a9c0f8099a7fc2a230a8b245 (patch) | |
tree | fe4a1015798e75b1d32cb3f7d77e7854cc8cef87 /src/jogl/classes/javax/media | |
parent | 88eef9e4eae8e63762252f1d11bca2bd0fde809b (diff) |
Bug 1039: Rename GLAnimatorControl.UncaughtGLAnimatorExceptionHandler -> GLAnimatorControl.UncaughtExceptionHandler
Diffstat (limited to 'src/jogl/classes/javax/media')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLAnimatorControl.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java b/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java index 50f7e9bbb..d14ada48b 100644 --- a/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java +++ b/src/jogl/classes/javax/media/opengl/GLAnimatorControl.java @@ -34,14 +34,14 @@ package javax.media.opengl; */ public interface GLAnimatorControl extends FPSCounter { /** - * A {@link GLAnimatorControl#setUncaughtExceptionHandler(UncaughtGLAnimatorExceptionHandler) registered} - * {@link UncaughtGLAnimatorExceptionHandler} instance is invoked when an {@link GLAnimatorControl animator} abruptly {@link #stop() stops} + * A {@link GLAnimatorControl#setUncaughtExceptionHandler(UncaughtExceptionHandler) registered} + * {@link UncaughtExceptionHandler} instance is invoked when an {@link GLAnimatorControl animator} abruptly {@link #stop() stops} * due to an uncaught exception from one of its {@link GLAutoDrawable}s. * @see #uncaughtException(GLAnimatorControl, GLAutoDrawable, Throwable) - * @see GLAnimatorControl#setUncaughtExceptionHandler(UncaughtGLAnimatorExceptionHandler) + * @see GLAnimatorControl#setUncaughtExceptionHandler(UncaughtExceptionHandler) * @since 2.2 */ - public static interface UncaughtGLAnimatorExceptionHandler { + public static interface UncaughtExceptionHandler { /** * Method invoked when the given {@link GLAnimatorControl} is {@link GLAnimatorControl#stop() stopped} due to the * given uncaught exception happened on the given {@link GLAutoDrawable}. @@ -60,7 +60,7 @@ public interface GLAnimatorControl extends FPSCounter { * @param animator the {@link GLAnimatorControl} * @param drawable the causing {@link GLAutoDrawable} * @param cause the uncaught exception - * @see GLAnimatorControl#setUncaughtExceptionHandler(UncaughtGLAnimatorExceptionHandler) + * @see GLAnimatorControl#setUncaughtExceptionHandler(UncaughtExceptionHandler) * @since 2.2 */ void uncaughtException(final GLAnimatorControl animator, final GLAutoDrawable drawable, final Throwable cause); @@ -215,22 +215,22 @@ public interface GLAnimatorControl extends FPSCounter { void remove(GLAutoDrawable drawable); /** - * Returns the {@link UncaughtGLAnimatorExceptionHandler} invoked when this {@link GLAnimatorControl animator} abruptly {@link #stop() stops} + * Returns the {@link UncaughtExceptionHandler} invoked when this {@link GLAnimatorControl animator} abruptly {@link #stop() stops} * due to an uncaught exception from one of its {@link GLAutoDrawable}s. * <p> * Default is <code>null</code>. * </p> * @since 2.2 */ - UncaughtGLAnimatorExceptionHandler getUncaughtExceptionHandler(); + UncaughtExceptionHandler getUncaughtExceptionHandler(); /** * Set the handler invoked when this {@link GLAnimatorControl animator} abruptly {@link #stop() stops} * due to an uncaught exception from one of its {@link GLAutoDrawable}s. - * @param handler the {@link UncaughtGLAnimatorExceptionHandler} to use as this {@link GLAnimatorControl animator}'s uncaught exception + * @param handler the {@link UncaughtExceptionHandler} to use as this {@link GLAnimatorControl animator}'s uncaught exception * handler. Pass <code>null</code> to unset the handler. - * @see UncaughtGLAnimatorExceptionHandler#uncaughtException(GLAnimatorControl, GLAutoDrawable, Throwable) + * @see UncaughtExceptionHandler#uncaughtException(GLAnimatorControl, GLAutoDrawable, Throwable) * @since 2.2 */ - void setUncaughtExceptionHandler(final UncaughtGLAnimatorExceptionHandler handler); + void setUncaughtExceptionHandler(final UncaughtExceptionHandler handler); } |