From fd2e775c94578eb9bc93e15338cf17dd25ddf075 Mon Sep 17 00:00:00 2001 From: schrom01 Date: Sat, 30 Apr 2022 18:22:06 +0200 Subject: [PATCH 01/12] cleanCode fixes. --- .../TournamentListController.java | 17 ++++++----------- .../tournamentList/tournamentList.fxml | 6 +++--- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/app/src/main/java/ch/zhaw/projekt2/turnierverwaltung/main/tournamentList/TournamentListController.java b/app/src/main/java/ch/zhaw/projekt2/turnierverwaltung/main/tournamentList/TournamentListController.java index 37c5c7b..70ad12f 100644 --- a/app/src/main/java/ch/zhaw/projekt2/turnierverwaltung/main/tournamentList/TournamentListController.java +++ b/app/src/main/java/ch/zhaw/projekt2/turnierverwaltung/main/tournamentList/TournamentListController.java @@ -1,11 +1,6 @@ package ch.zhaw.projekt2.turnierverwaltung.main.tournamentList; import ch.zhaw.projekt2.turnierverwaltung.FXController; -import ch.zhaw.projekt2.turnierverwaltung.Factory; -import ch.zhaw.projekt2.turnierverwaltung.FileIO; -import ch.zhaw.projekt2.turnierverwaltung.Tournament; -import ch.zhaw.projekt2.turnierverwaltung.main.MainWindow; -import javafx.beans.Observable; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.event.ActionEvent; @@ -38,16 +33,16 @@ public class TournamentListController extends FXController { private Button openBtn; @FXML - private Label tournierListTitle; + private Label tournamentListTitle; @FXML - private ListView tournierListView; + private ListView tournamentListView; @FXML - private Label tournierModLabel; + private Label tournamentModLabel; @FXML - private Label turnierNameLabel; + private Label tournamentNameLabel; @FXML void createTournament(ActionEvent event) { @@ -57,7 +52,7 @@ public class TournamentListController extends FXController { @FXML void openTournament(ActionEvent event) { try { - File tournamentFile = tournierListView.getSelectionModel().getSelectedItems().get(0); + File tournamentFile = tournamentListView.getSelectionModel().getSelectedItems().get(0); getFactory().setTournament(getFileIO().loadTournament(tournamentFile)); getFactory().loadParticipantFormular((BorderPane) getPane()); } catch (IOException e) { @@ -73,7 +68,7 @@ public class TournamentListController extends FXController { for(File tournament : getFileIO().getList()){ tournamentFiles.add(tournament); } - tournierListView.setItems(tournamentFiles); + tournamentListView.setItems(tournamentFiles); } } diff --git a/app/src/main/resources/ch/zhaw/projekt2/turnierverwaltung/tournamentList/tournamentList.fxml b/app/src/main/resources/ch/zhaw/projekt2/turnierverwaltung/tournamentList/tournamentList.fxml index 74c2bf2..9dbbfeb 100644 --- a/app/src/main/resources/ch/zhaw/projekt2/turnierverwaltung/tournamentList/tournamentList.fxml +++ b/app/src/main/resources/ch/zhaw/projekt2/turnierverwaltung/tournamentList/tournamentList.fxml @@ -18,7 +18,7 @@ -