You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.1 KiB

6 years ago
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;
6 years ago
public class OptionVueController {
6 years ago
@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;
}
}

Powered by TurnKey Linux.