MCPcopy Index your code
hub / github.com/processing/processing / handleMethods

Method handleMethods

core/src/processing/core/PApplet.java:1624–1631  ·  view source on GitHub ↗
(String methodName)

Source from the content-addressed store, hash-verified

1622
1623
1624 protected void handleMethods(String methodName) {
1625 synchronized (registerLock) {
1626 RegisteredMethods meth = registerMap.get(methodName);
1627 if (meth != null) {
1628 meth.handle();
1629 }
1630 }
1631 }
1632
1633
1634 protected void handleMethods(String methodName, Object[] args) {

Callers 6

startMethod · 0.95
stopMethod · 0.95
handleDrawMethod · 0.95
handleMouseEventMethod · 0.95
handleKeyEventMethod · 0.95
disposeMethod · 0.95

Calls 2

handleMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected