diff options
author | Kenneth Russel <[email protected]> | 2007-07-04 20:45:31 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2007-07-04 20:45:31 +0000 |
commit | 97eef91903e3451455931f49cc3b04540539ec66 (patch) | |
tree | f42625c6239ba481da18f3aff40d4c3db3b1b24f /src | |
parent | 835c2f56041080241632d7e102fa45ab4605baf8 (diff) |
Doc updates
Diffstat (limited to 'src')
-rw-r--r-- | src/org/jdesktop/applet/util/JNLPAppletLauncher.java | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/src/org/jdesktop/applet/util/JNLPAppletLauncher.java b/src/org/jdesktop/applet/util/JNLPAppletLauncher.java index 9cb129f..283d2c8 100644 --- a/src/org/jdesktop/applet/util/JNLPAppletLauncher.java +++ b/src/org/jdesktop/applet/util/JNLPAppletLauncher.java @@ -37,8 +37,8 @@ * intended for use in the design, construction, operation or * maintenance of any nuclear facility. * - * $Revision: 1.11 $ - * $Date: 2007/07/04 20:27:08 $ + * $Revision: 1.12 $ + * $Date: 2007/07/04 20:45:31 $ * $State: Exp $ */ @@ -377,15 +377,21 @@ import org.xml.sax.helpers.DefaultHandler; * * <h3>JNLPAppletLauncher</h3> * + * <p> + * * The master jar file for the JNLPAppletLauncher is located at the following URL: * <pre> * http://download.java.net/media/applet-launcher/applet-launcher.jar * </pre> * + * <p> + * * This jar needs to be added to your archive parameter. * * <h3>Java 3D</h3> * + * <p> + * * The early access release of Java 3D 1.5.1 and later support the * JNLPAppletLauncher. You will need to add the following URLs to your * archive parameter: @@ -396,6 +402,8 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/java3d/webstart/early-access/vecmath/1.5.1/vecmath.jar * </pre> * + * <p> + * * and refer to the following in one of your <code>jnlpExtension</code> parameters: * * <pre> @@ -404,6 +412,8 @@ import org.xml.sax.helpers.DefaultHandler; * * <h3>JOGL</h3> * + * <p> + * * JOGL 1.1.1-rc3 and later support the JNLPAppletLauncher. You will * need to add the following URL to your archive parameter: * @@ -411,6 +421,8 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar * </pre> * + * <p> + * * Because JOGL depends on the GlueGen runtime, you will also need to * add the following URL to your archive parameter: * @@ -418,6 +430,8 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/gluegen/webstart/gluegen-rt.jar * </pre> * + * <p> + * * Finally, add the following to one of your * <code>jnlpExtension</code> parameters: * @@ -425,12 +439,16 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp * </pre> * + * <p> + * * Note that the jogl.jnlp extension will automatically pull in the * native code associated with the GlueGen runtime, so you don't have * to separately refer to the gluegen-rt.jnlp file. * * <h3>JOAL</h3> * + * <p> + * * JOAL 1.1.1 and later support the JNLPAppletLauncher. You will need * to add the following URL to your archive parameter: * @@ -438,6 +456,8 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/joal/webstart/joal.jar * </pre> * + * <p> + * * Because JOAL, like JOGL, depends on the GlueGen runtime, you will * also need to add the following URL to your archive parameter: * @@ -445,6 +465,8 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/gluegen/webstart/gluegen-rt.jar * </pre> * + * <p> + * * (If you are using both JOGL and JOAL, you only need to refer to * gluegen-rt.jar once in your archive parameter.) * @@ -457,6 +479,8 @@ import org.xml.sax.helpers.DefaultHandler; * http://download.java.net/media/joal/webstart/joal.jnlp * </pre> * + * <p> + * * Note that the joal.jnlp extension will automatically pull in the * native code associated with the GlueGen runtime, so you don't have * to separately refer to the gluegen-rt.jnlp file. @@ -492,6 +516,8 @@ import org.xml.sax.helpers.DefaultHandler; * } * </pre> * + * <p> + * * and wherever you would call <code>System.loadLibrary()</code> (from * within an <code>AccessController.doPrivileged()</code> block) to * load your extension's native code, call the above @@ -508,6 +534,8 @@ import org.xml.sax.helpers.DefaultHandler; * * <h2>Acknowledgments</h2> * + * <p> + * * The JNLPAppletLauncher was developed by Kevin Rushforth, Kenneth * Russell, and Chien Yang. It is based on the former * JOGLAppletLauncher developed by Lilian Chamontin. |