Don't like ads? PRO users don't see any ads ;-)
Guest

Wolf

By: a guest on Jul 8th, 2011  |  syntax: Java  |  size: 0.45 KB  |  hits: 77  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ...
  2. ...
  3. ...
  4.      */
  5.     public Spark() {
  6.  
  7.     }
  8.  
  9.     public void startup() {
  10.         if (Spark.isWindows(){
  11.  
  12.         USER_SPARK_HOME = "C:\\temp";
  13.  
  14. } else {
  15.             USER_SPARK_HOME = "/tmp/";
  16.         }
  17.        
  18.         String current = System.getProperty("java.library.path");
  19.         String classPath = System.getProperty("java.class.path");
  20.  
  21.         // Set UIManager properties for JTree
  22.         System.setProperty("apple.laf.useScreenMenuBar", "true");
  23.  
  24. ...
  25. ...