PageRenderTime 66ms CodeModel.GetById 4ms RepoModel.GetById 1ms app.codeStats 0ms

/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
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  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. }