Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8091081

FilteredList and SortedList should implement interface so that developer can create alternative implementations

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • None
    • javafx

      With the new FilteredList and SortedList in jdk8 b89, the old SortableList and FilterableList interface are gone. However I still suggest bringing the old interfaces back with some modifications. See below for suggested code. These interfaces will allow us to implement our own implementations of FilterableList and SortableList, for example, use database to do the filtering and sorting.

      public interface SortableList<E> extends List<E> {
          public void sort();
          public void setComparator(Comparator<? super E> c);
          public Comparator<? super E> getComparator();
      }

      public interface FilterableList<E> extends List<E> {
          public void filter();
          public void setPredicate(Predicate<? super E> m);
          public Predicate<? super E> getPredicate();
      }

            Unassigned Unassigned
            dqiaojfx David Qiao (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

              Created:
              Updated:
              Imported: