MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / C

Class C

reflection/InnerImplementation.java:9–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8class InnerA {
9 private static class C implements A {
10 @Override public void f() {
11 System.out.println("public C.f()");
12 }
13 public void g() {
14 System.out.println("public C.g()");
15 }
16 void u() {
17 System.out.println("package C.u()");
18 }
19 protected void v() {
20 System.out.println("protected C.v()");
21 }
22 private void w() {
23 System.out.println("private C.w()");
24 }
25 }
26 public static A makeA() { return new C(); }
27}
28

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected