Java Swing How to - Make JList Multiple ranges of selected items are allowed








Question

We would like to know how to make JList Multiple ranges of selected items are allowed.

Answer

// w  w w  . j  av  a2 s . co  m
import javax.swing.DefaultListSelectionModel;
import javax.swing.JList;

public class Main {
  public static void main(String[] argv) throws Exception {
    String[] items = { "A", "B", "C", "D" };
    JList list = new JList(items);

    list.setSelectionMode(DefaultListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
  }
}