mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
30 lines
468 B
Java
30 lines
468 B
Java
import javafx.fxml.FXML;
|
|
import javafx.scene.control.Label;
|
|
import javafx.scene.control.TextField;
|
|
import javafx.scene.layout.VBox;
|
|
|
|
|
|
public class CustomVBox extends VBox {
|
|
@FXML
|
|
Label label;
|
|
|
|
@FXML
|
|
Button button;
|
|
|
|
public Button getButton() {
|
|
return button;
|
|
}
|
|
|
|
public void setButton(Button button) {
|
|
this.button = button;
|
|
}
|
|
|
|
public Label getLabel() {
|
|
return label;
|
|
}
|
|
|
|
public void setLabel(Label label) {
|
|
this.label = label;
|
|
}
|
|
|
|
} |