MCPcopy Create free account
hub / github.com/bsideup/jabel / Inner

Class Inner

example/src/main/java/com/example/JabelExample.java:68–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66 }
67
68 class Inner {
69
70 static class WhyNot {
71
72 }
73
74 public static void staticMethodInsideInner() {
75 enum LocalEnum { }
76 System.out.println(LocalEnum.values());
77 }
78
79 public String innerPublic() {
80 // Test nest-mate
81 return outerPrivate();
82 }
83 }
84}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected