65 lines
952 B
Java
65 lines
952 B
Java
package ch.zhaw.gartenverwaltung;
|
|
|
|
import javafx.event.ActionEvent;
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.control.Button;
|
|
import javafx.scene.control.Label;
|
|
import javafx.scene.layout.VBox;
|
|
|
|
public class CropDetailController {
|
|
|
|
@FXML
|
|
private Button area_button;
|
|
|
|
@FXML
|
|
private Label area_label;
|
|
|
|
@FXML
|
|
private Label cropName_label;
|
|
|
|
@FXML
|
|
private Label description_label;
|
|
|
|
@FXML
|
|
private VBox growthPahses_vbox;
|
|
|
|
@FXML
|
|
private Label lacation_label;
|
|
|
|
@FXML
|
|
private Label light_label;
|
|
|
|
@FXML
|
|
private Button location_button;
|
|
|
|
@FXML
|
|
private VBox pests_vbox;
|
|
|
|
@FXML
|
|
private Label soil_label;
|
|
|
|
@FXML
|
|
private Label spacing_label;
|
|
|
|
@FXML
|
|
void editTaskList(ActionEvent event) {
|
|
|
|
}
|
|
|
|
@FXML
|
|
void goBack(ActionEvent event) {
|
|
|
|
}
|
|
|
|
@FXML
|
|
void setArea(ActionEvent event) {
|
|
|
|
}
|
|
|
|
@FXML
|
|
void setLocation(ActionEvent event) {
|
|
|
|
}
|
|
|
|
}
|