JavaTM 2 Platform
Std. Ed. v1.3

Uses of Interface
javax.swing.table.TableModel

Packages that use TableModel
javax.swing Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms. 
javax.swing.event Provides for events fired by Swing components. 
javax.swing.table Provides classes and interfaces for dealing with javax.swing.JTable. 
 

Uses of TableModel in javax.swing
 

Fields in javax.swing declared as TableModel
protected  TableModel JTable.dataModel
          The TableModel of the table.
 

Methods in javax.swing that return TableModel
 TableModel JTable.getModel()
          Returns the TableModel that provides the data displayed by this JTable.
protected  TableModel JTable.createDefaultDataModel()
          Returns the default table model object, which is a DefaultTableModel.
 

Methods in javax.swing with parameters of type TableModel
 void JTable.setModel(TableModel dataModel)
          Sets the data model for this table to newModel and registers with it for listener notifications from the new data model.
 

Constructors in javax.swing with parameters of type TableModel
JTable(TableModel dm)
          Constructs a JTable that is initialized with dm as the data model, a default column model, and a default selection model.
JTable(TableModel dm, TableColumnModel cm)
          Constructs a JTable that is initialized with dm as the data model, cm as the column model, and a default selection model.
JTable(TableModel dm, TableColumnModel cm, ListSelectionModel sm)
          Constructs a JTable that is initialized with dm as the data model, cm as the column model, and sm as the selection model.
 

Uses of TableModel in javax.swing.event
 

Constructors in javax.swing.event with parameters of type TableModel
TableModelEvent(TableModel source)
          All row data in the table has changed, listeners should discard any state that was based on the rows and requery the TableModel to get the new row count and all the appropriate values.
TableModelEvent(TableModel source, int row)
          This row of data has been updated.
TableModelEvent(TableModel source, int firstRow, int lastRow)
          The data in rows [firstRow, lastRow] have been updated.
TableModelEvent(TableModel source, int firstRow, int lastRow, int column)
          The cells in column column in the range [firstRow, lastRow] have been updated.
TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type)
          The cells from (firstRow, column) to (lastRow, column) have been changed.
 

Uses of TableModel in javax.swing.table
 

Classes in javax.swing.table that implement TableModel
 class AbstractTableModel
          This abstract class provides default implementations for most of the methods in the TableModel interface.
 class DefaultTableModel
          This is an implementation of TableModel that uses a Vector of Vectors to store the cell value objects.
 


JavaTM 2 Platform
Std. Ed. v1.3

Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.

Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.