inserts several objects in the manager at once. See add
void addAll(Iterable<T> objects) { for (T object in objects) { add(object); } }