PageRenderTime 50ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-5-pre1/org/gjt/sp/jedit/bsh/commands/getClassPath.bsh

#
Unknown | 13 lines | 10 code | 3 blank | 0 comment | 0 complexity | 57b1ceb776525591d3fe26cb1d2af6f2 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 org.gjt.sp.jedit.bsh.BshClassManager;
  7. URL [] getClassPath() {
  8. this.cp = this.caller.namespace.getClassManager().getClassPath();
  9. return cp.getPathComponents();
  10. }