Java tutorial
//package com.java2s; import java.util.Collection; public class Main { public static <E> void addAll(Collection<E> c, E... args) { for (E ele : args) { c.add(ele); } } }