static HashSet concatListsToSet(Collection... lists) {
new HashSet l;
for (Collection list : lists)
if (list != null)
l.addAll(list);
return l;
}
static HashSet concatListsToSet(Collection extends Collection> lists) {
new HashSet l;
for (Collection list : lists)
if (list != null)
l.addAll(list);
return l;
}