Search Results

6
votes
2answers
2k views

Overriding a method with Generic Parameters in Java?

I have an abstract Class Monitor.java which is subclassed by a Class EmailMonitor.java. The method public abstract List<? extends MonitorAccount> performMonitor(List<? …
0
votes

Overriding a method with Generic Parameters in Java?

Here is my own solution. I suspect this is the same thing Jon Skeet was trying to get at... without the typo (see my comment in reply to his answer). the Monitor.java class: …