/jEdit/tags/jedit-4-3-pre5/bsh/commands/getResource.bsh
# · Unknown · 14 lines · 11 code · 3 blank · 0 comment · 0 complexity · e6db877cec15a559e092aad7782aeecc MD5 · raw file
- /**
- Get a resource from the BeanShell classpath.
- This method takes into account modification to the BeanShell class path via
- addClassPath() and setClassPath();
- */
- bsh.help.getResource = "usage: getResource( String name )";
- import bsh.Interpreter;
- URL getResource( String path )
- {
- return this.interpreter.getClassManager().getResource( path );
- }