6 lines
136 B
Java
6 lines
136 B
Java
//: innerclasses/Destination.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
public interface Destination {
|
|
String readLabel();
|
|
} ///:~
|