// License: GPL. For details, see LICENSE file. package org.openstreetmap.josm.gui.history; import static org.openstreetmap.josm.tools.I18n.tr; import javax.swing.table.DefaultTableColumnModel; import javax.swing.table.TableColumn; /** * The {@see TableColumnModel} for the table with the list of nodes. * * */ public class NodeListTableColumnModel extends DefaultTableColumnModel { protected void createColumns() { TableColumn col = null; NodeListTableCellRenderer renderer = new NodeListTableCellRenderer(); // column 0 - Version col = new TableColumn(0); col.setHeaderValue(tr("Nodes")); col.setCellRenderer(renderer); addColumn(col); } public NodeListTableColumnModel() { createColumns(); } }