/jEdit/branches/jedit43_nostrings/bsh/commands/getClassPath.bsh

# · Unknown · 13 lines · 10 code · 3 blank · 0 comment · 0 complexity · f5168c11a63c585388b449043eb8c018 MD5 · raw file

  1. /**
  2. Get the current classpath including all user path, extended path, and the
  3. bootstrap JAR file if possible.
  4. */
  5. bsh.help.getClassPath= "usage: getClassPath()";
  6. import bsh.BshClassManager;
  7. URL [] getClassPath() {
  8. this.cp = this.caller.namespace.getClassManager().getClassPath();
  9. return cp.getPathComponents();
  10. }