Get the names of methods declared in this namespace. (This does not include methods in parent namespaces).
()
| 384 | (This does not include methods in parent namespaces). |
| 385 | */ |
| 386 | public String [] getMethodNames() |
| 387 | { |
| 388 | if ( methods == null ) |
| 389 | return new String [0]; |
| 390 | else |
| 391 | return methods.keySet().toArray(new String[0]); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | Get the methods defined in this namespace. |
no test coverage detected