Java Swing How to - Select all the items








Question

We would like to know how to select all the items.

Answer

//w w  w .  j  av a2 s . c o  m
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);

    int start = 0;
    int end = list.getModel().getSize() - 1;
    if (end >= 0) {
      list.setSelectionInterval(start, end);
    }
  }
}