@deprecated See #setTypedVariable( String, Class, Object, Modifiers )
( String name, Class type, Object value, boolean isFinal )
| 618 | @deprecated See #setTypedVariable( String, Class, Object, Modifiers ) |
| 619 | */ |
| 620 | public void setTypedVariable( |
| 621 | String name, Class type, Object value, boolean isFinal ) |
| 622 | throws UtilEvalError |
| 623 | { |
| 624 | Modifiers modifiers = new Modifiers(); |
| 625 | if ( isFinal ) |
| 626 | modifiers.addModifier( Modifiers.FIELD, "final" ); |
| 627 | setTypedVariable( name, type, value, modifiers ); |
| 628 | } |
| 629 | |
| 630 | /** |
| 631 | Declare a variable in the local scope and set its initial value. |
no test coverage detected