mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 21:30:23 +07:00
13 lines
384 B
Java
13 lines
384 B
Java
import javafx.event.Event;
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.control.*;
|
|
import javafx.scene.input.*;
|
|
|
|
public class HighlightSuper {
|
|
@FXML private void onSameArg(MouseEvent e) {}
|
|
@FXML private void onSuperArg(Event e) {}
|
|
@FXML private void onNoArg() {}
|
|
@FXML private void onNotSuper(MouseDragEvent e) {}
|
|
@FXML private void onNotRelated(SortEvent e) {}
|
|
}
|