0
votes
5answers
109 views

How do I cast a List from a subclass generic to a parent class generic?

I'm modifying open JDK to add features and I've run into this twice with no good solution. There's a class named JCStatement which extends JCTree. Issue: I want to cast a List<JCStatement> ...
3
votes
5answers
124 views

Inheretence and casting for List Ojbects

I'm having trouble casting a List of Fruit, down to the Fruit subclass contained in the List. public class Response { private List<Fruit> mFruitList; public List<Fruit> ...