MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / PDestination

Class PDestination

innerclasses/TestParcel.java:11–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected