Class CompositeObservableList<T>

  • Type Parameters:
    T - List element type.
    All Implemented Interfaces:
    Iterable<T>, Collection<T>, List<T>, javafx.beans.Observable, javafx.collections.ObservableList<T>

    public class CompositeObservableList<T>
    extends javafx.collections.ObservableListBase<T>
    List comprising zero to many child lists models. Events are automatically propagated from component lists. Items can be removed or replaced but not added.
    • Constructor Detail

      • CompositeObservableList

        public CompositeObservableList​(javafx.collections.ObservableList<javafx.collections.ObservableList<T>> pComponentLists)
        Parameters:
        pComponentLists - Lists that will be laid end to end in order to create composite list.