Remove the variable from the namespace.
( String name )
| 360 | Remove the variable from the namespace. |
| 361 | */ |
| 362 | public void unsetVariable( String name ) |
| 363 | { |
| 364 | if ( variables != null ) |
| 365 | { |
| 366 | variables.remove( name ); |
| 367 | nameSpaceChanged(); |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | /** |
| 372 | Get the names of variables defined in this namespace. |
no test coverage detected