MCPcopy Index your code
hub / github.com/beanshell/beanshell / InterfaceImpl

Class InterfaceImpl

tests/src/InterfaceImpl.java:2–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1
2public class InterfaceImpl implements Interface
3{
4 public String getString() { return "foo"; }
5 public Integer getInteger() { return Integer.valueOf(5); }
6 public int getPrimitiveInt() { return 7; }
7 public boolean getPrimitiveBool() { return true; }
8 public Object getNull() { return null; }
9}
10

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected