Hi,
if there is:
, can I define this one:
without giving "T extends Comparable<T>"?
It would be perfect to say:
:).
Thanks in advance,
Etam.
if there is:
Code:
public class Range<T extends Comparable<T>> extends Scope<T> implements Cloneable
Code:
public class RangeList<T extends Comparable<T>, R extends Range<T>> extends ArrayList<R>
It would be perfect to say:
Code:
RangeList<R extends Range<T extends Comparable<T>>>
Thanks in advance,
Etam.
Comment