-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Closed
Description
We should add support for Wildcard fields where it is "extending" some
object. For example:
public class Foo {
private static final List<? extends Number> EMPTY_LIST = Collections.
private final List<? extends Number> listOfNumbers;
public Foo() {
this(null);
}
public Foo(List<? extends Number> list) {
this.listOfNumbers = list;
}
}
Original issue reported on code.google.com by [email protected]
on 28 Aug 2008 at 8:14