Interface BasicTableModel

All Superinterfaces:
TableModel

public interface BasicTableModel extends TableModel
This interface defines a basic table model which can be used to create a table model using lambda expressions. Implementations of this are typically created declarative like so:

      UI.table().withModel(
          UI.tableModel()
          .colNames("A", "B")
          .colCount(()->2)
          .rowCount(()->3)
          .getsEntryAt((int row, int col)->
              vm.getData(row, col)
          )
      )