/jEdit/branches/jedit43_nostrings/bsh/commands/getClassPath.bsh
# · Unknown · 13 lines · 10 code · 3 blank · 0 comment · 0 complexity · f5168c11a63c585388b449043eb8c018 MD5 · raw file
- /**
- Get the current classpath including all user path, extended path, and the
- bootstrap JAR file if possible.
- */
- bsh.help.getClassPath= "usage: getClassPath()";
- import bsh.BshClassManager;
- URL [] getClassPath() {
- this.cp = this.caller.namespace.getClassManager().getClassPath();
- return cp.getPathComponents();
- }