(String key, Object value)
| 321 | } |
| 322 | |
| 323 | public void setVariable(String key, Object value) { |
| 324 | if(key != null){ |
| 325 | if(key.equals("disposeOnComplete")){ |
| 326 | if(value != null){ |
| 327 | String v= value.toString(); |
| 328 | disposeOnComplete = v.equalsIgnoreCase("true"); |
| 329 | } |
| 330 | } |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | public Object getVariable(String key) { |
| 335 | if(key != null){ |
nothing calls this directly
no test coverage detected