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

Last change on this file since 12158 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
RevLine 
[1001]1// License: GPL. For details, see LICENSE file.
[10125]2package org.openstreetmap.josm.gui.correction;
[1001]3
4import java.util.List;
5
[10125]6import org.openstreetmap.josm.data.correction.RoleCorrection;
[1001]7
[10125]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 */
[1001]18 public RoleCorrectionTable(List<RoleCorrection> roleCorrections) {
19 super(new RoleCorrectionTableModel(roleCorrections));
20 }
21}
Note: See TracBrowser for help on using the repository browser.