| 10 | public int value() { return i; } |
| 11 | } |
| 12 | class Destination { |
| 13 | private String label; |
| 14 | Destination(String whereTo) { label = whereTo; } |
| 15 | String readLabel() { return label; } |
| 16 | } |
| 17 | public static void main(String[] args) { |
| 18 | Parcel3 p = new Parcel3(); |
| 19 | // Must use instance of outer class |
nothing calls this directly
no outgoing calls
no test coverage detected