/jEdit/tags/jedit-4-1-pre5/bsh/commands/getResource.bsh
# · Unknown · 13 lines · 10 code · 3 blank · 0 comment · 0 complexity · 9bf8b22a5adcb3b0faf6b653d5b4cbd6 MD5 · raw file
- /**
- The equivalent of calling getResource() on the interpreter class in
- the bsh package. Use absolute paths to get stuff in the classpath.
- */
- bsh.help.getResource = "usage: getResource( String name )";
- import bsh.Interpreter;
- URL getResource( String path ) {
- //return this.interpreter.getClass().getResource(name);
- return Interpreter.class.getResource(path);
- }