If i have
public abstract class SomeType<T extends SomeOtherType> {}
public class WrapperType<U extends SomeType<T>> {}
Is there a way to change the last signature (which is an error "cannot resolve the T character) so that I can use the generic type in WrapperType, say for List<T>or something like that?
(If I asked this question using the wrong terminology, I would appreciate corrections.)
Logan source
share