| 1 | |
| 2 | public 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 |
nothing calls this directly
no outgoing calls
no test coverage detected