mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
12 lines
232 B
Java
12 lines
232 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.SortEvent;
|
|
import javafx.scene.control.TableView;
|
|
|
|
public class QuickfixRaw {
|
|
@FXML TableView table;
|
|
|
|
public void onSort(SortEvent<TableView> tableViewSortEvent) {
|
|
|
|
}
|
|
}
|