I have a problem when compiling a generic class with an inner class. The class extends a generic class, the inner class also.
Here the interface implemented:
Dear ranchers, I've been a diehard Java 1.4 programmer for a fair while, but I'm trying to catch up now - and I've got a problem with using generics and inner classes together. Consider the following simplified example: public class A { private B b1; public A( E d1, E d2 ) { b1 = new B(d1); } private B getB1() ...