PageRenderTime 41ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre5/bsh/commands/getClassPath.bsh

#
Unknown | 9 lines | 6 code | 3 blank | 0 comment | 0 complexity | afde7554ef83d546a46b1a72448e39ae 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. bsh.help.getClassPath= "usage: getClassPath()";
  2. import bsh.BshClassManager;
  3. URL [] getClassPath() {
  4. cp = BshClassManager.getClassManager().getClassPath();
  5. return cp.getPathComponents();
  6. }