package test; import java.util.List; public interface ListFactory { List createList(); List createList(int initialCapacity); }