I would like to create a table with the constructor method JTable(TableModel). What exact methods in the TableModel do I need to display the titles of each column?
|
feedback
|
|
You need to embed your
| |||||||||
feedback
|
|
You need to implement the getColumnName method in the TableModel interface to return the column names you want. From the Javadoc of TableModel: String getColumnName(int columnIndex) EDIT: Create your own TableModel by subclassing AbstractTableModel and provide implemenation for the abstract methods and override getColumnName method. For example you can try something like:
| ||||
|
feedback
|
|
You need to implement a TableModel for example by extending the class AbstractTableModel or by to using a DefaultTableModel. This later has a constructor where you can set the number and names of your columns. | |||
|
feedback
|
|
I think what you are really looking for the is the class DefaultTableModel. Just read through the documentation and you will be on your own way. | |||
|
feedback
|