Java Swing How to - Set the selection model for JList to be a contiguous range








Question

We would like to know how to set the selection model for JList to be a contiguous range.

Answer

// ww w .j  a  v  a 2  s  .  c  om
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.SINGLE_INTERVAL_SELECTION);

  }
}