< prev index next >

modules/base/src/test/java/test/javafx/collections/TransformationListTest.java

Print this page
rev 9769 : 8139848: SortedList should provide a way to map source index to view index

@@ -83,10 +83,15 @@
         public int getSourceIndex(int i) {
             throw new UnsupportedOperationException("Not supported yet.");
         }
 
         @Override
+        public int getViewIndex(int index) {
+            throw new UnsupportedOperationException("Not supported yet.");
+        }
+
+        @Override
         public boolean removeAll(String... es) {
             throw new UnsupportedOperationException("Not supported yet.");
         }
 
         @Override
< prev index next >