PageRenderTime 42ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Unknown | 14 lines | 10 code | 4 blank | 0 comment | 0 complexity | 606be0d7cb1bd68d6a6c0c04d8e9d480 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. Change the classpath to the specified array of directories and/or archives.
  3. <p>
  4. See "Class Path Management" for details.
  5. @method void setClassPath( URL [] )
  6. */
  7. bsh.help.setClassPath= "usage: setClassPath( URL [] )";
  8. void setClassPath( urls ) {
  9. this.caller.namespace.getClassManager().setClassPath( urls );
  10. }