Advertisement
luliu

Complex Number Jnlp

Feb 18th, 2016
88
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. *Complex Number Jnlp File
  5. */
  6.  
  7. <!-- Java Network Launch Protocol -->
  8. <?xml version="1.0" encoding="UTF-8"?>
  9. <jnlp spec="1.0+" codebase="http://cs.stcc.edu/~liu/Complex">
  10.     <information>
  11.         <title>Complex Number With Panes Demo</title>
  12.         <vendor>Lu Liu</vendor>
  13.     </information>
  14.     <resources>
  15.         <!-- Application Resources -->
  16.         <j2se version=1.8+" href="http://java.sun.com/products/autodl/j2se"/>
  17.         <jar href="Complex.jar" main="true" />
  18.     </resources>
  19.     <application-desc
  20.          name="Complex Number With Panes Demo" main-class="ComplexNumberGuiDriver"
  21.          width="300"
  22.          height="300">
  23.      </application-desc>
  24.      <update check="background"/>
  25. </jnlp>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement