/jEdit/tags/jedit-4-1-pre5/bsh/commands/setStrictJava.bsh

# · Unknown · 20 lines · 16 code · 4 blank · 0 comment · 0 complexity · cbed5be8a45ffc04c89553a631f1addd MD5 · raw file

  1. /**
  2. When strict Java mode is enabled BeanShell will:
  3. <p>
  4. <ol>
  5. <li>Require typed variable declarations, method arguments and return types.
  6. <li>Modify the scoping of variables to look for the variable
  7. declaration first in the parent namespace, as in a java method inside
  8. a java class. e.g. if you can write a method called incrementFoo() that
  9. will do the expected thing without referring to "super.foo".
  10. </ul>
  11. */
  12. void setStrictJava( boolean val )
  13. {
  14. import bsh.Interpreter;
  15. Interpreter.strictJava = val;
  16. }