Ok guys, here's a simple question that I couldn't quite manage to figure out on my own. Any help is greatly appreciated!
- Let's say I have an abstract class
Superclass, from which I derived subclassesSubclass1andSubclass2. - Let's say I have another
myClassclass, with amyFieldfield. I would like to specify thatmyField's type should be a List of a fixed subclass ofSuperclass, i.e. eitherList<Subclass1>orList<Subclass2>.
How should I type myField? List<Superclass> doesn't work since such a list could theoretically contain a combination of Subclass1 and Subclass2 objects... What I'm really looking for here is something like List<subclass(Superclass)>. Does that even exist? How would you go about this?
Again, thanks a lot for the help!
Guillaume
Subclass1you'll have to specify exactly that. Note thatList<Superclass>wouldn't be correct (except if Superclass could be instantiated itself), it should beList<? extends Superclass>if you wanted all subclasses of Superclass - but since that's not what you want, it doesn't really matter.. – Voo Sep 5 '11 at 0:39