Uses of Interface javax.swing.table.TableModel

Uses in package javax.swing.event

Constructors with parameter type javax.swing.table.TableModel

Creates a new TableModelEvent indicating an UPDATE to the data in all columns and rows.
Creates a new TableModelEvent indicating an UPDATE to the data in a single row across all columns.
TableModelEvent.TableModelEvent(TableModel source, int firstRow, int lastRow)
Creates a new TableModelEvent indicating an UPDATE to the data in the specified rows across all columns.
TableModelEvent.TableModelEvent(TableModel source, int firstRow, int lastRow, int column)
Creates a new TableModelEvent indicating an UPDATE to the data in the specified rows and column.
TableModelEvent.TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type)
Creates a new TableModelEvent indicating an operation of the specified type on the data in the specified rows and column.

Uses in package javax.swing

Constructors with parameter type javax.swing.table.TableModel

Creates a new JTable instance, using the given data model object that provides information about the table content.
Creates a new JTable instance, using the given model object that provides information about the table content.
Creates a new JTable instance, providing data model, column model and list selection model.

Fields of type javax.swing.table.TableModel

TableModel
The model for data stored in the table.

Methods with parameter type javax.swing.table.TableModel

void
Set the value of the dataModel property.

Unregister this as a TableModelListener from previous dataModel and register it with new parameter m.

Methods with return type javax.swing.table.TableModel

TableModel
Create the default table data model that is used if the user-defined data model is not provided.
TableModel
Get the value of the dataModel property.

Uses in package javax.swing.table

Classes implementing javax.swing.table.TableModel

class
A base class that can be used to create implementations of the TableModel interface.
class
A two dimensional data structure used to store Object instances, usually for display in a JTable component.