source: josm/trunk/src/org/openstreetmap/josm/gui/history/RelationMemberTableColumnModel.java@ 2242

Last change on this file since 2242 was 2017, checked in by Gubaer, 15 years ago

removed OptionPaneUtil
cleanup of deprecated Layer API
cleanup of deprecated APIs in OsmPrimitive and Way
cleanup of imports

File size: 1.0 KB
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.TableColumn;
8
9/**
10 * The {@see TableColumnModel} for the table with the list of relation members.
11 *
12 */
13public class RelationMemberTableColumnModel extends DefaultTableColumnModel {
14 protected void createColumns() {
15 TableColumn col = null;
16 RelationMemberListTableCellRenderer renderer = new RelationMemberListTableCellRenderer();
17
18 // column 0 - Version
19 col = new TableColumn(0);
20 col.setHeaderValue(tr("Role"));
21 col.setCellRenderer(renderer);
22 addColumn(col);
23
24 // column 0 - Version
25 col = new TableColumn(1);
26 col.setHeaderValue(tr("Primitive"));
27 col.setCellRenderer(renderer);
28 addColumn(col);
29 }
30
31 public RelationMemberTableColumnModel() {
32 createColumns();
33 }
34}
Note: See TracBrowser for help on using the repository browser.