001 // License: GPL. For details, see LICENSE file. 002 package org.openstreetmap.josm.corrector; 003 004 import java.util.List; 005 006 public class RoleCorrectionTable extends 007 CorrectionTable<RoleCorrectionTableModel> { 008 009 public RoleCorrectionTable(List<RoleCorrection> roleCorrections) { 010 super(new RoleCorrectionTableModel(roleCorrections)); 011 } 012 013 }