Java javax.swing.table AbstractTableModel fields, constructors, methods, implement or subclass

Example usage for Java javax.swing.table AbstractTableModel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing.table AbstractTableModel.

The text is from its open source code.

Subclass

javax.swing.table.AbstractTableModel has subclasses.
Click this link to see all its subclasses.

Constructor

Method

intgetColumnCount()
Returns the number of columns in the model.
StringgetColumnName(int column)
Returns a default name for the column using spreadsheet conventions: A, B, C, ...
intgetRowCount()
Returns the number of rows in the model.
ObjectgetValueAt(int rowIndex, int columnIndex)
Returns the value for the cell at columnIndex and rowIndex.
voidsetValueAt(Object aValue, int rowIndex, int columnIndex)
This empty implementation is provided so users don't have to implement this method if their data model is not editable.