source: josm/trunk/src/org/openstreetmap/josm/gui/history/VersionTableColumnModel.java@ 2990

Last change on this file since 2990 was 2512, checked in by stoecker, 14 years ago

i18n updated, fixed files to reduce problems when applying patches, fix #4017

File size: 819 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.history;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import javax.swing.table.DefaultTableColumnModel;
7import javax.swing.table.TableCellRenderer;
8import javax.swing.table.TableColumn;
9/**
10 * The {@see TableColumnModel} for the table with the list of versions
11 *
12 */
13public class VersionTableColumnModel extends DefaultTableColumnModel {
14 protected void createColumns() {
15 TableColumn col = null;
16 TableCellRenderer renderer = new VersionTableCellRenderer();
17
18 // column 0 - Version
19 col = new TableColumn(0);
20 col.setHeaderValue(tr("Version"));
21 col.setCellRenderer(renderer);
22 addColumn(col);
23 }
24
25 public VersionTableColumnModel() {
26 createColumns();
27 }
28}
Note: See TracBrowser for help on using the repository browser.