MCPcopy Index your code
hub / github.com/zxh0/jvm.go / If1

Interface If1

test/testclasses/src/main/java/jvm/lambda/InterfaceMethodTest.java:9–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7public class InterfaceMethodTest {
8
9 public interface If1 {
10 static int x() {
11 return 1;
12 }
13 default int y() {
14 return 2;
15 }
16 }
17
18 public static class Impl1 implements If1 {
19

Callers 3

staticMethodMethod · 0.95
yMethod · 0.95
defaultMethodMethod · 0.65

Implementers 3

Impl1test/testclasses/src/main/java/jvm/lam
Impl2test/testclasses/src/main/java/jvm/lam
Impl3test/testclasses/src/main/java/jvm/lam

Calls

no outgoing calls

Tested by

no test coverage detected