diff options
author | Sven Gothel <[email protected]> | 2019-03-20 23:02:50 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-03-20 23:02:50 +0100 |
commit | 76805f82460fdeef40a4562a954802537d554c6d (patch) | |
tree | a4a62aba5bfa581f321b587aaa17a24eaa8d5943 /src/newt/classes/com/jogamp | |
parent | 5ebd08709bceee1a7bee45cb042c60e299140fdf (diff) |
Tests: Adding API Doc for test utilizing NEWTDemoListener and derivations
Diffstat (limited to 'src/newt/classes/com/jogamp')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/util/applet/JOGLNewtAppletBase.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/newt/classes/com/jogamp/newt/util/applet/JOGLNewtAppletBase.java b/src/newt/classes/com/jogamp/newt/util/applet/JOGLNewtAppletBase.java index 5194d9416..c30576ff4 100644 --- a/src/newt/classes/com/jogamp/newt/util/applet/JOGLNewtAppletBase.java +++ b/src/newt/classes/com/jogamp/newt/util/applet/JOGLNewtAppletBase.java @@ -56,9 +56,13 @@ import com.jogamp.opengl.util.Animator; import com.jogamp.opengl.util.AnimatorBase; -/** Shows how to deploy an applet using JOGL. This demo must be - referenced from a web page via an <applet> tag. */ - +/** + * Shows how to deploy an applet using JOGL. + * This demo must be referenced from a web page via an <applet> tag. + * <p> + * The demo code uses {@link NEWTDemoListener} functionality. + * </p> + */ public class JOGLNewtAppletBase implements KeyListener, GLEventListener { public static final boolean DEBUG = Debug.debug("Applet"); |