/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

  1. /**
  2. The equivalent of calling getResource() on the interpreter class in
  3. the bsh package. Use absolute paths to get stuff in the classpath.
  4. */
  5. bsh.help.getResource = "usage: getResource( String name )";
  6. import bsh.Interpreter;
  7. URL getResource( String path ) {
  8. //return this.interpreter.getClass().getResource(name);
  9. return Interpreter.class.getResource(path);
  10. }