Si lo defino como:
Código:
ArrayList arrayList = new ArrayList();
me da un warning.
Multiple markers at this line
- ArrayList is a raw type. References to generic type ArrayList<E> should be
parameterized
Es mejor que lo defina como:
Código:
ArrayList<Object> arrayList = new ArrayList<Object>();
¿verdad?
Saludos.