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( conf -> conf
          .colNames("A", "B")
          .colCount(()->2)
          .rowCount(()->3)
          .getsEntryAt((int row, int col)->
              vm.getDataAt(row, col)
          )
      )