001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.correction;
003
004import java.util.List;
005
006import org.openstreetmap.josm.data.correction.RoleCorrection;
007
008/**
009 * Role correction table.
010 * @since 1001
011 */
012public class RoleCorrectionTable extends CorrectionTable<RoleCorrectionTableModel> {
013
014    /**
015     * Constructs a new {@code RoleCorrectionTable}.
016     * @param roleCorrections role corrections
017     */
018    public RoleCorrectionTable(List<RoleCorrection> roleCorrections) {
019        super(new RoleCorrectionTableModel(roleCorrections));
020    }
021}