Найден другой пример на https://kodejava.org/how-do-i-allow-row-or-column-selection-in-jtable/:
"Чтобы разрешить выбор строки или выбор столбца или выбор строки и столбца в компоненте JTable, мы можем включить и выключить его, вызывая JTable setRowSelectionAllowed () и JTable's setColumnSelectionAllowed () методов.
Оба эти метода принимают значение логическое , указывающее, разрешен ли выбор или нет. Установка их обоих в true позволяет нам выбирать строки и столбцы из JTable. "
package org.kodejava.example.swing;
import javax.swing.*;
import javax.swing.table.AbstractTableModel;
import java.awt.*;
public class TableAllowColumnSelection extends JPanel {
public TableAllowColumnSelection() {
initializePanel();
}
private void initializePanel() {
this.setLayout(new BorderLayout());
this.setPreferredSize(new Dimension(500, 150));
JTable table = new JTable(new PremiereLeagueTableModel());
// sets to false to disallow row selection in the table
// model.
table.setRowSelectionAllowed(false);
// Sets to true to allow column selection in the table
// model.
table.setColumnSelectionAllowed(true);
JScrollPane pane = new JScrollPane(table);
this.add(pane, BorderLayout.CENTER);
}
public static void showFrame() {
JPanel panel = new TableAllowColumnSelection();
panel.setOpaque(true);
JFrame frame = new JFrame("JTable Column Selection");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setContentPane(panel);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
TableAllowColumnSelection.showFrame();
}
});
}
class PremiereLeagueTableModel extends AbstractTableModel {
// TableModel's column names
private String[] columnNames = {
"TEAM", "P", "W", "D", "L", "GS", "GA", "GD", "PTS"
};
// TableModel's data
private Object[][] data = {
{ "Liverpool", 3, 3, 0, 0, 7, 0, 7, 9 },
{ "Tottenham", 3, 3, 0, 0, 8, 2, 6, 9 },
{ "Chelsea", 3, 3, 0, 0, 8, 3, 5, 9 },
{ "Watford", 3, 3, 0, 0, 7, 2, 5, 9 },
{ "Manchester City", 3, 2, 1, 0, 9, 2, 7, 7 }
};
public int getRowCount() {
return data.length;
}
public int getColumnCount() {
return columnNames.length;
}
public Object getValueAt(int rowIndex, int columnIndex) {
return data[rowIndex][columnIndex];
}
}
}