1 package be
.nikiroo
.utils
.ui
.compat
;
3 import javax
.swing
.JList
;
6 * Compatibility layer so I can at least get rid of the warnings of using
7 * {@link JList} without a parameter (and still staying Java 1.6 compatible).
9 * This class is merely a {@link javax.swing.ListModel} that you can parametrise
17 @SuppressWarnings("rawtypes") // not compatible Java 1.6
18 public interface ListModel6
<E
> extends javax
.swing
.ListModel
{