I have a JBtable and in one of the columns I would like to insert a button.
My attempt was as follows:
 private class DeleteColumn extends ColumnInfo<Field, JButton> {
        public DeleteColumn() {
            super("Delete");
        }
        @Nullable
        @Override
        public JButton valueOf(final Field field) {
            final JButton removalButton = new JButton();
            removalButton.setText("-");
            removalButton.addActionListener((e) -> {
                // do something
            });
            return removalButton;
        }
        @Override
        public Class<?> getColumnClass() {
            return JButton.class;
        }
    }
However when this is rendered, it still only displays the .toString() of the JButton. How can I display a button in the table?
                        
You should write a custom renderer. Please look at:
http://docs.oracle.com/javase/tutorial/uiswing/components/table.html#editrender
There are also examples you could look at:
http://docs.oracle.com/javase/tutorial/uiswing/examples/components/TableRenderDemoProject/src/components/TableRenderDemo.java