Пример #1
0
 /**
  * Sets the class path to use for starting the interpreter JVM. Must include the classes for the
  * interpreter.
  *
  * @param classPath Class path for the interpreter JVM
  */
 public void setStartupClassPath(String classPath) {
   _startupClassPath = IOUtil.parsePath(classPath);
 }
Пример #2
0
 public Options(JavaVersion javaVersion, Iterable<? extends File> classPath) {
   this(javaVersion, classPath, IOUtil.parsePath(System.getProperty("sun.boot.class.path", "")));
 }