source: josm/trunk/src/org/openstreetmap/josm/gui/util/SortableTableModel.java@ 17356

Last change on this file since 17356 was 15226, checked in by Don-vip, 5 years ago

fix #14208 - add dedicated buttons in filter dialog to sort/reverse filters order.

Major overhaul/harmonization of our reorderable/sortable models.

  • Property svn:eol-style set to native
File size: 329 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.util;
3
4import org.openstreetmap.josm.data.SortableModel;
5
6/**
7 * Defines a table model that can be sorted.
8 * @param <T> item type
9 * @since 15226
10 */
11public interface SortableTableModel<T> extends ReorderableTableModel<T>, SortableModel<T> {
12
13}
Note: See TracBrowser for help on using the repository browser.