Package swingtree.api.model
Interface TableMapDataSource<E>
- Type Parameters:
E
- The type of the table entryObject
s.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A simple functional interface whose implementations are used to
form simple
TableModel
implementations
based on a mapping of column names to columns.-
Method Summary
-
Method Details
-
get
Supplies a map of columns forming a matrix which will be used to render a table. It is called continuously by the table model to populate the table, so the implementation should avoid doing heavy computations, I/O operations or large allocations.- Returns:
- A map of columns forming a matrix which will be used to populate the table.
-