mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
9 lines
269 B
Java
9 lines
269 B
Java
import javafx.event.Event;
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.control.*;
|
|
|
|
public class HighlightWildcard {
|
|
@FXML private void scrollPositive(ScrollToEvent<? extends Number> e) {}
|
|
@FXML private void scrollNegative(ScrollToEvent<? super Number> e) {}
|
|
}
|