DefaultListSelectionModel.MULTIPLE_INTERVAL_SELECTION : DefaultListSelectionModel « javax.swing « Java by API






DefaultListSelectionModel.MULTIPLE_INTERVAL_SELECTION

  

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);
  }
}

   
    
  








Related examples in the same category

1.DefaultListSelectionModel: setLeadAnchorNotificationEnabled(boolean flag)
2.DefaultListSelectionModel: setSelectionMode(int selectionMode)