Interface BasicTableModel.EntrySetter<E>

Type Parameters:
E - The type of table entries.
Enclosing interface:
BasicTableModel
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 static interface BasicTableModel.EntrySetter<E>
Implementations of this functional interface translate to the TableModel.setValueAt(Object, int, int) method.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    set(int rowIndex, int colIndex, E aValue)
    Sets the entry at the specified row and column.
  • Method Details

    • set

      void set(int rowIndex, int colIndex, E aValue)
      Sets the entry at the specified row and column.
      Parameters:
      rowIndex - The row index.
      colIndex - The column index.
      aValue - The new value for the entry.