source: josm/trunk/src/org/openstreetmap/josm/gui/correction/RoleCorrectionTable.java@ 13146

Last change on this file since 13146 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: 575 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.RoleCorrection;
7
8/**
9 * Role correction table.
10 * @since 1001
11 */
12public class RoleCorrectionTable extends CorrectionTable<RoleCorrectionTableModel> {
13
14 /**
15 * Constructs a new {@code RoleCorrectionTable}.
16 * @param roleCorrections role corrections
17 */
18 public RoleCorrectionTable(List<RoleCorrection> roleCorrections) {
19 super(new RoleCorrectionTableModel(roleCorrections));
20 }
21}
Note: See TracBrowser for help on using the repository browser.