/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

  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. }