Set a variable explicitly in the local scope.
( String name, Object value, boolean strictJava )
| 258 | Set a variable explicitly in the local scope. |
| 259 | */ |
| 260 | void setLocalVariable( |
| 261 | String name, Object value, boolean strictJava ) |
| 262 | throws UtilEvalError |
| 263 | { |
| 264 | setVariable( name, value, strictJava, false/*recurse*/ ); |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | Set the value of a the variable 'name' through this namespace. |