I try with a loop like that
// ArrayList tourists
for (Tourist t : tourists) {
if (t != null) {
t.setId(idForm);
}
}
But it isn't nice. Can anyone suggest me a better solution?
Some useful benchmarks to make better decision:
Iterator? Dig java-doc. download.oracle.com/javase/6/docs/api/java/util/… – Nishant Jan 27 '11 at 17:22