source: josm/trunk/src/org/openstreetmap/josm/gui/correction/TagCorrectionTable.java@ 17318

Last change on this file since 17318 was 10125, checked in by Don-vip, 8 years ago

refactor classes from corrector package, add javadoc

  • Property svn:eol-style set to native
File size: 562 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.correction;
3
4import java.util.List;
5
6import org.openstreetmap.josm.data.correction.TagCorrection;
7
8/**
9 * Tag correction table.
10 * @since 729
11 */
12public class TagCorrectionTable extends CorrectionTable<TagCorrectionTableModel> {
13
14 /**
15 * Constructs a new {@code TagCorrectionTable}.
16 * @param tagCorrections tag corrections
17 */
18 public TagCorrectionTable(List<TagCorrection> tagCorrections) {
19 super(new TagCorrectionTableModel(tagCorrections));
20 }
21}
Note: See TracBrowser for help on using the repository browser.