mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 19:58:23 +07:00
13 lines
313 B
Java
13 lines
313 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.SortEvent;
|
|
import javafx.scene.control.TableView;
|
|
import javafx.util.Pair;
|
|
|
|
public class QuickfixSpecific {
|
|
@FXML
|
|
TableView<Pair<Integer, String>> table;
|
|
|
|
public void onSort(SortEvent<TableView<Pair<Integer, String>>> tableViewSortEvent) {
|
|
|
|
}
|
|
} |