MCPcopy Index your code
hub / github.com/clojure/clojure / IBar

Interface IBar

test/java/reflector/IBar.java:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package reflector;
2
3public interface IBar {
4 String stuff();
5
6 class Factory {
7 public static IBar get() {
8 return new SubBar();
9 }
10 }
11}
12
13class Bar {
14 public String stuff() {

Callers

nothing calls this directly

Implementers 2

SubBartest/java/reflector/IBar.java
Bartest/java/reflector/IBar.java

Calls

no outgoing calls

Tested by

no test coverage detected