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.

111 lines
2.0 KiB

6 years ago
package xyz.wbsite.dbtool.javafx.ctrl;
import javafx.fxml.FXML;
import javafx.scene.control.CheckBox;
import javafx.scene.control.TextField;
6 years ago
public class DetailTableController {
6 years ago
@FXML
private TextField tablename;
@FXML
private TextField tablecomment;
@FXML
private CheckBox create;
@FXML
private CheckBox delete;
@FXML
private CheckBox update;
@FXML
private CheckBox find;
@FXML
private CheckBox get;
@FXML
private CheckBox search;
@FXML
5 years ago
private CheckBox html;
@FXML
private CheckBox sys;
6 years ago
public CheckBox getCreate() {
return create;
}
public void setCreate(CheckBox create) {
this.create = create;
}
public CheckBox getDelete() {
return delete;
}
public void setDelete(CheckBox delete) {
this.delete = delete;
}
public CheckBox getUpdate() {
return update;
}
public void setUpdate(CheckBox update) {
this.update = update;
}
public CheckBox getFind() {
return find;
}
public void setFind(CheckBox find) {
this.find = find;
}
public CheckBox getGet() {
return get;
}
public void setGet(CheckBox get) {
this.get = get;
}
public CheckBox getSearch() {
return search;
}
public void setSearch(CheckBox search) {
this.search = search;
}
public TextField getTablename() {
return tablename;
}
public void setTablename(TextField tablename) {
this.tablename = tablename;
}
public TextField getTablecomment() {
return tablecomment;
}
public void setTablecomment(TextField tablecomment) {
this.tablecomment = tablecomment;
}
5 years ago
public CheckBox getHtml() {
return html;
}
public void setHtml(CheckBox html) {
this.html = html;
}
public CheckBox getSys() {
return sys;
}
public void setSys(CheckBox sys) {
this.sys = sys;
}
6 years ago
}

Powered by TurnKey Linux.