We would like to know how to clear all selections.
/*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(); } }