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

Last change on this file since 9453 was 5835, checked in by stoecker, 11 years ago

Javadoc fixes

  • Property svn:eol-style set to native
File size: 1014 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.TableColumn;
8
9/**
10 * The {@link javax.swing.table.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("Object"));
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.