Advertisement
Guest User

Wolf

a guest
Jul 8th, 2011
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  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. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement