mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 21:00:59 +07:00
16 lines
483 B
Java
16 lines
483 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.*;
|
|
import javafx.util.Pair;
|
|
|
|
import java.util.Map;
|
|
|
|
public class HighlightHalfRaw {
|
|
@FXML TableView<Pair> positive;
|
|
@FXML TableView<Pair> negative;
|
|
public void sortPositive(SortEvent<TableView<Pair>> e) {}
|
|
public void scrollPositive(ScrollToEvent<TableColumn<Pair, ?>> e) {}
|
|
|
|
public void sortNegative(SortEvent<TableColumn> e) {}
|
|
public void scrollNegative(ScrollToEvent<TableColumn<Map.Entry, ?>> e) {}
|
|
}
|