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