Simple check for whether the binding contains a particular variable or not. @param name the name of the variable to check for
(String name)
| 103 | * @param name the name of the variable to check for |
| 104 | */ |
| 105 | public boolean hasVariable(String name) { |
| 106 | return variables != null && variables.containsKey(name); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Returns the variables map, creating it on first access. |
no test coverage detected