| 9 | @Override public int value() { return i; } |
| 10 | } |
| 11 | protected final class |
| 12 | PDestination implements Destination { |
| 13 | private String label; |
| 14 | private PDestination(String whereTo) { |
| 15 | label = whereTo; |
| 16 | } |
| 17 | @Override |
| 18 | public String readLabel() { return label; } |
| 19 | } |
| 20 | public Destination destination(String s) { |
| 21 | return new PDestination(s); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected