mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +07:00
13 lines
273 B
Java
13 lines
273 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.SortEvent;
|
|
import javafx.scene.control.TableView;
|
|
import javafx.util.Pair;
|
|
|
|
public class QuickfixHalfRaw {
|
|
@FXML TableView<Pair> table;
|
|
|
|
public void onSort(SortEvent<TableView<Pair>> tableViewSortEvent) {
|
|
|
|
}
|
|
}
|