Uses of Interface
javax.swing.table.TableColumnModel
Package | Description |
---|---|
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 TableColumnModel in javax.swing
Fields in javax.swing declared as TableColumnModel Modifier and Type Field Description protected TableColumnModel
JTable. columnModel
TheTableColumnModel
of the table.Methods in javax.swing that return TableColumnModel Modifier and Type Method Description protected TableColumnModel
JTable. createDefaultColumnModel()
Returns the default column model object, which is aDefaultTableColumnModel
.TableColumnModel
JTable. getColumnModel()
Returns theTableColumnModel
that contains all column information of this table.Methods in javax.swing with parameters of type TableColumnModel Modifier and Type Method Description void
JTable. setColumnModel(TableColumnModel columnModel)
Sets the column model for this table tocolumnModel
and registers for listener notifications from the new column model.Constructors in javax.swing with parameters of type TableColumnModel Constructor Description JTable(TableModel dm, TableColumnModel cm)
Constructs aJTable
that is initialized withdm
as the data model,cm
as the column model, and a default selection model.JTable(TableModel dm, TableColumnModel cm, ListSelectionModel sm)
Constructs aJTable
that is initialized withdm
as the data model,cm
as the column model, andsm
as the selection model. -
Uses of TableColumnModel in javax.swing.event
Constructors in javax.swing.event with parameters of type TableColumnModel Constructor Description TableColumnModelEvent(TableColumnModel source, int from, int to)
Constructs aTableColumnModelEvent
object. -
Uses of TableColumnModel in javax.swing.table
Classes in javax.swing.table that implement TableColumnModel Modifier and Type Class Description class
DefaultTableColumnModel
The standard column-handler for aJTable
.Fields in javax.swing.table declared as TableColumnModel Modifier and Type Field Description protected TableColumnModel
JTableHeader. columnModel
TheTableColumnModel
of the table header.Methods in javax.swing.table that return TableColumnModel Modifier and Type Method Description protected TableColumnModel
JTableHeader. createDefaultColumnModel()
Returns the default column model object which is aDefaultTableColumnModel
.TableColumnModel
JTableHeader. getColumnModel()
Returns theTableColumnModel
that contains all column information of this table header.Methods in javax.swing.table with parameters of type TableColumnModel Modifier and Type Method Description void
JTableHeader. setColumnModel(TableColumnModel columnModel)
Sets the column model for this table tonewModel
and registers for listener notifications from the new column model.Constructors in javax.swing.table with parameters of type TableColumnModel Constructor Description JTableHeader(TableColumnModel cm)
Constructs aJTableHeader
which is initialized withcm
as the column model.