MCPcopy Create free account
hub / github.com/beanshell/beanshell / getMethodNames

Method getMethodNames

src/bsh/NameSpace.java:386–392  ·  view source on GitHub ↗

Get the names of methods declared in this namespace. (This does not include methods in parent namespaces).

()

Source from the content-addressed store, hash-verified

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.

Callers 1

Calls 1

keySetMethod · 0.45

Tested by

no test coverage detected