Here you can find the source of newArrayList()
public static <E> ArrayList<E> newArrayList()
//package com.java2s; import java.util.ArrayList; public class Main { public static <E> ArrayList<E> newArrayList() { return new ArrayList<E>(); }//from www . jav a 2s . c om }