Java javax.swing.table DefaultTableColumnModel fields, constructors, methods, implement or subclass

Example usage for Java javax.swing.table DefaultTableColumnModel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing.table DefaultTableColumnModel.

The text is from its open source code.

Subclass

javax.swing.table.DefaultTableColumnModel has subclasses.
Click this link to see all its subclasses.

Constructor

DefaultTableColumnModel()
Creates a default table column model.

Method

voidaddColumn(TableColumn aColumn)
Appends aColumn to the end of the tableColumns array.
TableColumngetColumn(int columnIndex)
Returns the TableColumn object for the column at columnIndex.
intgetColumnCount()
Returns the number of columns in the tableColumns array.
voidmoveColumn(int columnIndex, int newIndex)
Moves the column and heading at columnIndex to newIndex.
voidremoveColumn(TableColumn column)
Deletes the column from the tableColumns array.