Set strict Java mode on or off. This mode attempts to make BeanShell syntax behave as Java syntax, eliminating conveniences like loose variables, etc. When enabled, variables are required to be declared or initialized before use and method arguments are reqired to have types. Th
( boolean b )
| 1115 | objects as method closures. |
| 1116 | */ |
| 1117 | public void setStrictJava( boolean b ) { |
| 1118 | this.strictJava = b; |
| 1119 | } |
| 1120 | |
| 1121 | /** |
| 1122 | @see #setStrictJava( boolean ) |