Java Swing How to - Clear all selections








Question

We would like to know how to clear all selections.

Answer

/*from w  ww .j  a va2 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);
    list.clearSelection();
  }
}