Sets the value of the given variable @param name the name of the variable to set @param value the new value for the given variable
(String name, Object value)
| 79 | * @param value the new value for the given variable |
| 80 | */ |
| 81 | public void setVariable(String name, Object value) { |
| 82 | if (variables == null) |
| 83 | variables = new LinkedHashMap(); |
| 84 | variables.put(name, value); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * remove the variable with the specified name |