1 2 3 4 5
import java.util.List; public abstract class SuperA<T> { public abstract SuperB<T> getSomeB(SuperB<T> b); }