( String name, Class type, LHS lhs )
| 37 | LHS lhs; |
| 38 | |
| 39 | Variable( String name, Class type, LHS lhs ) |
| 40 | { |
| 41 | this.name = name; |
| 42 | this.lhs = lhs; |
| 43 | this.type = type; |
| 44 | } |
| 45 | |
| 46 | Variable( String name, Object value, Modifiers modifiers ) |
| 47 | throws UtilEvalError |