2015-09-07 11:44:36 -06:00
|
|
|
|
// innerclasses/Parcel7.java
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
|
|
|
|
// Returning an instance of an anonymous inner class.
|
|
|
|
|
|
|
|
|
|
public class Parcel7 {
|
|
|
|
|
public Contents contents() {
|
|
|
|
|
return new Contents() { // Insert a class definition
|
|
|
|
|
private int i = 11;
|
|
|
|
|
@Override
|
|
|
|
|
public int value() { return i; }
|
|
|
|
|
}; // Semicolon required in this case
|
|
|
|
|
}
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Parcel7 p = new Parcel7();
|
|
|
|
|
Contents c = p.contents();
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output: (None) */
|