MCPcopy Index your code
hub / github.com/seaswalker/spring-analysis / main

Method main

src/main/java/test/proxy/JDKProxy.java:12–17  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

10public class JDKProxy {
11
12 public static void main(String[] args) {
13 UserService userService = new UserServiceImpl();
14 UserService proxy = (UserService) Proxy.newProxyInstance(userService.getClass().getClassLoader(),
15 new Class[]{UserService.class}, new Handler(userService));
16 proxy.printName();
17 }
18
19}

Callers

nothing calls this directly

Calls 1

printNameMethod · 0.95

Tested by

no test coverage detected