static Collection addAllAndReturnCollection(Collection c, Collection b) { if (c != null && b != null) c.addAll(b); ret c; }