/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
- /**
- Change the classpath to the specified array of directories and/or archives.
- <p>
- See "Class Path Management" for details.
- @method void setClassPath( URL [] )
- */
- bsh.help.setClassPath= "usage: setClassPath( URL [] )";
- void setClassPath( urls ) {
- this.caller.namespace.getClassManager().setClassPath( urls );
- }