@Override
public Component getTableCellRendererComponent(final JTable table,
final Object value, final boolean isSelected,
final boolean hasFocus, final int row, final int column) {
final NodeInfo nodeInfo = (NodeInfo) value;
final NodeForObject nodeForObject = nodeInfo.getNodeForObject();
setText(nodeForObject.identificationString());
setForeground(nodeInfo.isMainFather() ? Color.RED : Color.BLACK);
return this;
}