Grazie mille andbin, risolvi sempre i miei problemi
Per chi fosse interessato avevo i warning qui:
codice:
Hashtable type = new Hashtable();
type.put("chiave","valore");
Ed avevo ll messaggio
warning: [unchecked] unchecked call to put(K,V) as a member of the raw type java.util.Hashtable
Quindi ho risolto mettendo
codice:
Hashtable<String,String> type = new Hashtable<String,String>();
Inoltre errore simile su
codice:
Vector vect = new Vector();
vect.add("stringa");
Suppongo che se avessi lasciato tutto com'era non sarebbe successo nulla di grave vero?
Sempre a patto che i vari put e add operino su stessi tipi (esempio stringhe)
Grazie ancora
ciao