//: c07:innerscopes:Destination.java // From Thinking in Java, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt package c07.innerscopes; interface Destination { String readLabel(); } ///:~