Class Test{ public ArrayList getList(){ ArrayList temp = new ArrayList(); ... .... return temp; }}
Class Test{ public List getList(){ ArrayList temp = new ArrayList(); ... .... return temp; }}