Class DelegatingList<T>

  • Type Parameters:
    T - the type of elements in this list
    All Implemented Interfaces:
    Iterable<T>, Collection<T>, List<T>
    Direct Known Subclasses:
    ComponentList

    public class DelegatingList<T>
    extends ListImpl<T>
    implements List<T>
    List that delegates to another list
    • Field Detail

      • list

        protected final List<T> list
    • Constructor Detail

      • DelegatingList

        public DelegatingList​(List<T> list)
        Creates a new delegating list
        Parameters:
        list - underlying list