mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 11:18:16 +07:00
15 lines
398 B
Java
15 lines
398 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.*;
|
|
import javafx.scene.input.*;
|
|
|
|
public class HighlightRaw {
|
|
@FXML TableView positive;
|
|
@FXML TableView negative;
|
|
|
|
public void sortPositive(SortEvent e) {}
|
|
public void scrollPositive(ScrollToEvent<TableColumn> e) {}
|
|
|
|
public void sortNegative(ScrollToEvent e) {}
|
|
public void scrollNegative(ScrollToEvent<TableView> e) {}
|
|
}
|