2015-09-07 11:44:36 -06:00
|
|
|
// innerclasses/Parcel5.java
|
2015-06-15 17:47:35 -07:00
|
|
|
// Nesting a class within a method.
|
|
|
|
|
|
|
|
public class Parcel5 {
|
|
|
|
public Destination destination(String s) {
|
|
|
|
class PDestination implements Destination {
|
|
|
|
private String label;
|
|
|
|
private PDestination(String whereTo) {
|
|
|
|
label = whereTo;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public String readLabel() { return label; }
|
|
|
|
}
|
|
|
|
return new PDestination(s);
|
|
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Parcel5 p = new Parcel5();
|
|
|
|
Destination d = p.destination("Tasmania");
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output: (None) */
|