diff options
Diffstat (limited to 'demo-template.jnlp')
-rw-r--r-- | demo-template.jnlp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/demo-template.jnlp b/demo-template.jnlp new file mode 100644 index 0000000..16ba968 --- /dev/null +++ b/demo-template.jnlp @@ -0,0 +1,22 @@ + +<jnlp codebase="DEMO_CODEBASE_TAG" href="NAME_TAG.jnlp"> + <information> + <title>DEMO_TITLE</title> + <vendor>JogAmp Community.</vendor> + <homepage href="http://jocl.jogamp.org"/> + <description>DEMO_TITLE</description> + <description kind="short">DEMO_TITLE</description> + <offline-allowed/> + </information> + <update check="background" policy="always"/> + + <resources> + <j2se href="http://java.sun.com/products/autodl/j2se" version="1.6+"/> + <property name="sun.java2d.noddraw" value="true"/> + <jar href="jocl-demos.jar" main="true"/> + <extension name="jocl" href="JOCL_CODEBASE_TAG/jocl.jnlp" /> + <extension name="jogl-all-awt" href="JOGL_CODEBASE_TAG/jogl-all-awt.jnlp" /> + </resources> + + <application-desc main-class="CLASS_TAG"/> +</jnlp> |