I\'m having trouble using generics. Given the following example :
class A { public A(Class myType){ } } class B extends A<
class A { public A(Class myType){ } } class B extends A> { public B(Class> myEType){ // <-- this is the changed line super(myEType); } }