Interface TableListDataSource<E>

Type Parameters:
E - The type of the table entry Objects.
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface TableListDataSource<E>
A simple functional interface whose implementations are used to form simple TableModel implementations based on lists of lists.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
     
  • Method Details

    • get

      List<List<E>> get()
      Returns:
      A list matrix which will be used to populate the table.