- Timestamp:
- 2014-12-18T20:22:41+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/TagTableColumnModel.java
r5832 r7822 9 9 /** 10 10 * The {@link javax.swing.table.TableColumnModel} for the table with the list of tags 11 * 11 * @since 1709 12 12 */ 13 public class TagTableColumnModel extends DefaultTableColumnModel {13 public class TagTableColumnModel extends DefaultTableColumnModel { 14 14 protected void createColumns() { 15 15 TableColumn col = null; … … 17 17 TagTableCellRenderer renderer = new TagTableCellRenderer(); 18 18 19 // column 0 - Name19 // column 0 - Key 20 20 col = new TableColumn(0); 21 col.setHeaderValue(tr(" Name"));21 col.setHeaderValue(tr("Key")); 22 22 col.setCellRenderer(renderer); 23 23 addColumn(col); … … 31 31 } 32 32 33 /** 34 * Constructs a new {@code TagTableColumnModel}. 35 */ 33 36 public TagTableColumnModel() { 34 37 createColumns();
Note:
See TracChangeset
for help on using the changeset viewer.