Interface ITableModel


@PublicAPI public interface ITableModel
ITableModel interface gives basic information about the table. i.e. row count, cell data, etc..
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the number of columns in the given table model
    getItem(int rowIndex, int columnIndex)
    Returns the cell on the given position
    int
    Returns the number of rows in the table model
    Returns the settings of the table model
  • Method Details

    • getRowCount

      int getRowCount()
      Returns the number of rows in the table model
      Returns:
      Row count of the table
    • getColumnCount

      int getColumnCount()
      Returns the number of columns in the given table model
      Returns:
      Column count of the table
    • getItem

      ITableCell getItem(int rowIndex, int columnIndex)
      Returns the cell on the given position
      Parameters:
      rowIndex - - Index of the cell's row
      columnIndex - - Index of the cell's column
      Returns:
      The cell on the given location
    • getSettings

      ISettings getSettings()
      Returns the settings of the table model
      Returns:
      Table settings