Can someone shed more light the following warning from Eclipse:
JList is a raw type. References to generic type JList<E> should be parameterized.
A line of code triggering this could be:
import javax.swing.JList;
....
private JList jList = null; // Warning on this line
You should put the type of the elements between <>, for example:
List<String> list = new ArrayList<String>();
list.add("String 1");
list.add("Some Text");