I wonder if there\'s such a way to iterate thru multiple collections with the extended for each loop in java.
So something like:
for (Object element
Collection collection1 = ... Collection collection2 = ... Collection collection3 = ... ... Collection all = ... all.addAll(collection1); all.addAll(collection2); all.addAll(collection3); ... for(Foo element : all) { }