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.
52 lines
942 B
52 lines
942 B
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;
|
|
import javafx.scene.control.ToggleGroup;
|
|
|
|
public class OptionVueController {
|
|
|
|
@FXML
|
|
private TextField name;
|
|
@FXML
|
|
private Button ok;
|
|
@FXML
|
|
private Button cancel;
|
|
@FXML
|
|
private ToggleGroup type;
|
|
|
|
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 ToggleGroup getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(ToggleGroup type) {
|
|
this.type = type;
|
|
}
|
|
}
|