Exemplo n.º 1
0
 /** Prints out classpath elements per line. Used for debugging only. */
 public static void showClassPath() {
   System.out.println("------Classpath------");
   String cps[] =
       PApplet.split(System.getProperty("java.class.path"), Base.isWindows() ? ';' : ':');
   for (int i = 0; i < cps.length; i++) {
     System.out.println(cps[i]);
   }
   System.out.println("---------------------");
 }