|
Last change
on this file was 15226, checked in by Don-vip, 7 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.
|
|---|
| 2 | package org.openstreetmap.josm.gui.util;
|
|---|
| 3 |
|
|---|
| 4 | import 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 | */
|
|---|
| 11 | public interface SortableTableModel<T> extends ReorderableTableModel<T>, SortableModel<T> {
|
|---|
| 12 |
|
|---|
| 13 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.