Advertisement
luliu

Complex Number Jnlp

Feb 18th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.79 KB | None | 0 0
  1. /*
  2. *Lu Liu
  3. *02/18/2016
  4. *lliu0001@student.stcc.edu
  5. *Complex Number Jnlp File
  6. */
  7.  
  8. <!-- Java Network Launch Protocol -->
  9. <?xml version="1.0" encoding="UTF-8"?>
  10. <jnlp spec="1.0+" codebase="http://cs.stcc.edu/~liu/Complex">
  11.     <information>
  12.         <title>Complex Number With Panes Demo</title>
  13.         <vendor>Lu Liu</vendor>
  14.     </information>
  15.     <resources>
  16.         <!-- Application Resources -->
  17.         <j2se version=1.8+" href="http://java.sun.com/products/autodl/j2se"/>
  18.         <jar href="Complex.jar" main="true" />
  19.     </resources>
  20.     <application-desc
  21.          name="Complex Number With Panes Demo" main-class="ComplexNumberGuiDriver"
  22.          width="300"
  23.          height="300">
  24.      </application-desc>
  25.      <update check="background"/>
  26. </jnlp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement