PageRenderTime 32ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-2-pre4/bsh/commands/getClassPath.bsh

#
Unknown | 13 lines | 10 code | 3 blank | 0 comment | 0 complexity | f5168c11a63c585388b449043eb8c018 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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. }