Cari, di seguito alcuni warnings di compilazione che vorrei risolvere (segue prima la porzione di codice a cui si riferisce):

- List <Comparable> keys = dataset.getKeys();
Comparable is a raw type. References to generic type Comparable<T> should be parameterized

-Enumeration e = zf.entries();
Enumeration is a raw type. References to generic type Enumeration<E> should be parameterized

-List <Comparable> keys = dataset.getKeys();
Type safety: The expression of type List needs unchecked conversion to conform to List<Comparable>


Seguendo il suggerimento che mi fornisce eclipse, ne saltano fuori altri.

Come posso fare?