m.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
m.addSelectionInterval(1, 1);
m.addSelectionInterval(7, 7);
m.addSelectionInterval(3, 5);
m.addListSelectionListener(this);
m.insertIndexInterval(2, 2, true);
harness.check(m.isSelectedIndex(0), false);
harness.check(m.isSelectedIndex(1), true);
harness.check(m.isSelectedIndex(2), false);
harness.check(m.isSelectedIndex(3), false);
harness.check(m.isSelectedIndex(4), false);