Module java.desktop
Package javax.swing.table
package javax.swing.table
Provides classes and interfaces for dealing with
javax.swing.JTable
.
JTable
is Swing's grid or tabular view for constructing user
interfaces for tabular data structures inside an application. Use this
package if you want control over how tables are constructed, updated, and
rendered, as well as how data associated with the tables are viewed and
managed.
Note: Most of the Swing API is not thread safe. For details, see Concurrency in Swing, a section in The Java Tutorial.
Related Documentation
For overviews, tutorials, examples, guides, and tool documentation, please see:- How to Use Tables, a section in The Java Tutorial
- Since:
- 1.2
-
ClassDescriptionThis abstract class provides default implementations for most of the methods in the
TableModel
interface.The standard class for rendering (displaying) individual cells in aJTable
.A subclass ofDefaultTableCellRenderer
that implementsUIResource
.The standard column-handler for aJTable
.This is an implementation ofTableModel
that uses aVector
ofVectors
to store the cell value objects.This is the object which manages the header of theJTable
.This interface must be implemented to provide an editor of cell values for aJTable
.This interface defines the method required by any object that would like to be a renderer for cells in aJTable
.ATableColumn
represents all the attributes of a column in aJTable
, such as width, resizability, minimum and maximum width.Defines the requirements for a table column model object suitable for use withJTable
.TheTableModel
interface specifies the methods theJTable
will use to interrogate a tabular data model.TableRowSorter<M extends TableModel>An implementation ofRowSorter
that provides sorting and filtering using aTableModel
.TableStringConverter is used to convert objects from the model into strings.