package xyz.wbsite.dbtool.javafx.ctrl; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.control.CheckBox; import javafx.scene.control.TextField; public class OptionVueController { @FXML private TextField name; @FXML private CheckBox elementUI; @FXML private CheckBox iView; @FXML private Button ok; @FXML private Button cancel; public Button getOk() { return ok; } public void setOk(Button ok) { this.ok = ok; } public Button getCancel() { return cancel; } public void setCancel(Button cancel) { this.cancel = cancel; } public TextField getName() { return name; } public void setName(TextField name) { this.name = name; } public CheckBox getElementUI() { return elementUI; } public void setElementUI(CheckBox elementUI) { this.elementUI = elementUI; } public CheckBox getiView() { return iView; } public void setiView(CheckBox iView) { this.iView = iView; } }