MCPcopy Create free account
hub / github.com/dynjs/dynjs / Dispatcher

Class Dispatcher

src/test/java/org/dynjs/runtime/java/Dispatcher.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package org.dynjs.runtime.java;
2
3public class Dispatcher {
4
5 public Object handle(GenericHandler<Thing> handler) {
6 Thing thing = new Thing();
7
8 return handler.handle( thing);
9 }
10
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected