Class DelegatingList<T>

java.lang.Object
io.fluentlenium.core.domain.ListImpl<T>
io.fluentlenium.core.domain.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 Details

    • list

      protected final List<T> list
  • Constructor Details

    • DelegatingList

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