Getting into a little bit of confusion here when to use generics:
Say I have:
public class Honda implements ICar(){
}
public class Opel implements ICar(){
}
should I use:
public class Person{
ICar car;
.
.
public Person (ICar c){
car = c;
}
}
or
public class Person<T extends ICar>{
T car;
.
.
public Person(T c){
car = c;
}
}
or does it depend on the tasks performed?
EDIT: So is generics only for aggregation relationships (containers etc)?
EDIT: This may help:
I think I am asking is generics just for use with collections?

GenericDAO<E, Pk>interface/abstract class. In that model every DAO is linked to an entity and primary key types and the concrete implementations may behave differently depending of the actual values of those parameters. – Alonso Dominguez Jul 11 '12 at 17:02