* @return Table.
*/
public static PageListTable createTable(EnumWikipedia wiki, List<Page> pages) {
PageListTableModel model = new PageListTableModel(wiki, pages);
PageListTable table = new PageListTable(wiki, model);
table.setDefaultRenderer(ProgressionValue.class, new ProgressionValueCellRenderer());
model.configureColumnModel(table.getColumnModel());
Utilities.addRowSorter(table, model);
table.addMouseListener(new PageListMouseListener());
return table;
}