Uses of Interface
javax.swing.table.TableColumnModel
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides for events fired by Swing components.
Provides classes and interfaces for dealing with
javax.swing.JTable
.-
Uses of TableColumnModel in javax.swing
Modifier and TypeFieldDescriptionprotected TableColumnModel
JTable.columnModel
TheTableColumnModel
of the table.Modifier and TypeMethodDescriptionprotected TableColumnModel
JTable.createDefaultColumnModel()
Returns the default column model object, which is aDefaultTableColumnModel
.JTable.getColumnModel()
Returns theTableColumnModel
that contains all column information of this table.Modifier and TypeMethodDescriptionvoid
JTable.setColumnModel
(TableColumnModel columnModel) Sets the column model for this table tocolumnModel
and registers for listener notifications from the new column model.ModifierConstructorDescriptionJTable
(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
ModifierConstructorDescriptionTableColumnModelEvent
(TableColumnModel source, int from, int to) Constructs aTableColumnModelEvent
object. -
Uses of TableColumnModel in javax.swing.table
Modifier and TypeClassDescriptionclass
The standard column-handler for aJTable
.Modifier and TypeFieldDescriptionprotected TableColumnModel
JTableHeader.columnModel
TheTableColumnModel
of the table header.Modifier and TypeMethodDescriptionprotected TableColumnModel
JTableHeader.createDefaultColumnModel()
Returns the default column model object which is aDefaultTableColumnModel
.JTableHeader.getColumnModel()
Returns theTableColumnModel
that contains all column information of this table header.Modifier and TypeMethodDescriptionvoid
JTableHeader.setColumnModel
(TableColumnModel columnModel) Sets the column model for this table tonewModel
and registers for listener notifications from the new column model.ModifierConstructorDescriptionConstructs aJTableHeader
which is initialized withcm
as the column model.