OnJava8-Examples/innerclasses/TestParcel.java

38 lines
993 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// innerclasses/TestParcel.java
2020-10-07 13:35:40 -06:00
// (c)2020 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2015-06-15 17:47:35 -07:00
class Parcel4 {
private class PContents implements Contents {
private int i = 11;
@Override
public int value() { return i; }
}
protected final class
PDestination implements Destination {
2015-06-15 17:47:35 -07:00
private String label;
private PDestination(String whereTo) {
label = whereTo;
}
@Override
public String readLabel() { return label; }
}
public Destination destination(String s) {
return new PDestination(s);
}
public Contents contents() {
return new PContents();
}
}
public class TestParcel {
public static void main(String[] args) {
Parcel4 p = new Parcel4();
Contents c = p.contents();
Destination d = p.destination("Tasmania");
// Illegal -- can't access private class:
2015-12-18 11:28:19 -08:00
//- Parcel4.PContents pc = p.new PContents();
2015-06-15 17:47:35 -07:00
}
2015-09-07 11:44:36 -06:00
}