update game with new id and new button to mark game as played
This commit is contained in:
+20
@@ -1,14 +1,34 @@
|
||||
package ch.zhaw.projekt2.turnierverwaltung.main.gameScheduleView;
|
||||
|
||||
import ch.zhaw.projekt2.turnierverwaltung.FXController;
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.control.ChoiceBox;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.TextField;
|
||||
|
||||
public class GameController extends FXController {
|
||||
|
||||
@FXML
|
||||
private Label participantNameOne;
|
||||
|
||||
@FXML
|
||||
private Label participantNameTwo;
|
||||
|
||||
@FXML
|
||||
private ChoiceBox<?> placesChoiceBox;
|
||||
|
||||
@FXML
|
||||
private TextField pointsTeamOne;
|
||||
|
||||
@FXML
|
||||
private TextField pointsTeamTwo;
|
||||
|
||||
@FXML
|
||||
void saveGamerResult(ActionEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadContent() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user