PageRenderTime 42ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-0-pre3/bsh/commands/getClass.bsh

#
Unknown | 10 lines | 7 code | 3 blank | 0 comment | 0 complexity | 85544daa1557d84a7a4610747d5589ae 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. Get a class through the current namespace utilizing the current imports, extended classloader, etc.
  3. */
  4. bsh.help.getClass= "usage: getClass( String name )";
  5. Class getClass( String name ) {
  6. return this.caller.namespace.getClass( name );
  7. }