MCPcopy Create free account
hub / github.com/castello/spring_basic / main

Method main

ch2/MethodCall.java:11–21  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

9
10public class MethodCall {
11 public static void main(String[] args) throws Exception{
12 HashMap map = new HashMap();
13 System.out.println("before:"+map);
14
15 ModelController mc = new ModelController();
16 String viewName = mc.main(map);
17
18 System.out.println("after :"+map);
19
20 render(map, viewName);
21 }
22
23 static void render(HashMap map, String viewName) throws IOException {
24 String result = "";

Callers

nothing calls this directly

Calls 2

mainMethod · 0.95
renderMethod · 0.95

Tested by

no test coverage detected