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

/jEdit/tags/jedit-4-5-pre1/org/gjt/sp/jedit/bsh/commands/bind.bsh

#
Unknown | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | a62a79776dd68bd392bece62e5fdf25e 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. Bind a bsh object into a particular namespace and interpreter
  3. */
  4. import org.gjt.sp.jedit.bsh.This;
  5. import org.gjt.sp.jedit.bsh.NameSpace;
  6. bind( org.gjt.sp.jedit.bsh.This ths, bsh.NameSpace namespace ) {
  7. This.bind( ths, namespace, this.interpreter );
  8. }