public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
boolean hasFocus, int row, int column) {
if (value != null && value instanceof HistoricLogEvent) {
HistoricLogEvent event = (HistoricLogEvent) value;
ActionButton component = new ActionButton(ACTION_TYPE.NONE);
String action = event.getAction();
component.setAction(action);
component.setToolTipText(action);
return component;
}
return super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);