Skip to content
Advertisement

Set alignment for all columns in custom AbstractTableModel

I have a custom AbstractTableModel and I would like to center all the columns by default. I know this is made using TableCellRenderer but I don’t know how to implement it in my code. Here’s my class.

JavaScript

Is this possible / a good idea or should I stick to doing it in the class where I use the JTables with the custom models?

Advertisement

Answer

The TableModel doesn’t do the rendering. However you do need to define the type of data for each column by implementing the getColumnClass(...) method, as was demonstrated in your last question, so the table can choose the appropriate renderer for the given class.

The default renderer for Double and Integer will display the numbers right justified.

If you really want them centered then you can use the JTable.getDefaultRenderer(...) method to get the default renderer. The default renderer is a JLabel so you can set its alignment:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement