Holger Brands
Holger Brands
I also encountered this problem. In GL 1.8.0, ca.odell.glazedlists.swing.EventSelectionModel.setSelectionInterval(int, int) write locks the source list, while I would have expected just a read lock. by mauromol
Basic work has been done, but will be completed later.. by brands
Also, a lot of tests in GroupingListTest.java have disabled that particular test in ListConsistencyListener: ListConsistencyListener listener = ListConsistencyListener.install(uniqueList); listener.setPreviousElementTracked(false); Enabling this test leads to failures, too. by brands
Sorry, I forgot to set the version for this problems: Glazed Lists 1.8.0. Please do that for me, as I can't change the issue properties. by mauromol
In my opinion, we should mimic the behavior of ArrayList.subList(...), whatever it is. If adding an element through a sublist grows the sublist's size by 1, then we should do...
Here is the source code of java.util.SubList public void add(int index, E element) { if (indexsize) throw new IndexOutOfBoundsException(); checkForComodification(); l.add(index+offset, element); expectedModCount = l.modCount; size++; modCount++; } So, it...
This is possible, but not before we fix GH-193: EventTableModel should support changing the EventList The fix would do the following: if constructed with a SortedList, use that to sort...
Depends on: GH-193
Is related to: GH-545
Please see my comments in pull request #694 . Corrections for CONTAINS in strict-mode (4) and (8) are fine. Changes for (2) and (6) should be kept out of the...