Someone knows why this doesn't work?
public class ArrayList<E extends EXTDBinterface<T>>
extends java.util.ArrayList<E> implements List<E>,
RandomAccess, Cloneable, java.io.Serializable {}
Eclipse complains about T not being resolved to a type... Is it impossible to extend the ArrayList class for types extending EXTDBinterface<T>? The point is I would like to use T inside the class, but sadly only this works:
public class ArrayList<E extends EXTDBinterface>
extends java.util.ArrayList<E> implements List<E>,
RandomAccess, Cloneable, java.io.Serializable {}
but then how to get the generic type T of EXTDBinterface at runtime...?