java.awt.list and java.util.list
which to use and why?
http://download.oracle.com/javase/7/docs/api/java/awt/List.html
http://download.oracle.com/javase/7/docs/api/java/util/List.html
Although I think I can understand the differences, I am not entirely sure.
Also sometimes I see List used with new ArrayList? I typically always did ArrayList with new ArrayList
Is there a benefit of putting an ArrayList into a List vs an ArrayList?