mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
21 lines
415 B
Java
21 lines
415 B
Java
import javafx.event.EventTarget;
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.Node;
|
|
import javafx.scene.layout.Pane;
|
|
import javafx.scene.layout.VBox;
|
|
|
|
public class FxIdGuessedOptionsController {
|
|
@FXML
|
|
private Pane pane;
|
|
@FXML
|
|
private Node node;
|
|
@FXML
|
|
private VBox box;
|
|
@FXML
|
|
private MyCustomModel model;
|
|
@FXML
|
|
private String text;
|
|
@FXML
|
|
private EventTarget target;
|
|
}
|