TableColumn
Class TableColumn
- java.lang.Object
-
- javax.swing.table.TableColumn
- All Implemented Interfaces:
- Serializable
public class TableColumn extends Object implements Serializable
A TableColumn
represents all the attributes of a column in a JTable
, such as width, resizability, minimum and maximum width. In addition, the TableColumn
provides slots for a renderer and an editor that can be used to display and edit the values in this column.
It is also possible to specify renderers and editors on a per type basis rather than a per column basis - see the setDefaultRenderer
method in the JTable
class.