diff options
Diffstat (limited to 'src/de/fhswf/in/inf/se/projektthemenvergabe')
| -rw-r--r-- | src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java index 1ed5f8e..a51a326 100644 --- a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java +++ b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java @@ -192,7 +192,8 @@ public class ProjektHinzufuegenController * Empty Ansprechpartner comboBox. * */ - public void handleResetAnsprechpartner() + @FXML + private void handleResetAnsprechpartner() { ansprechpartnerComboBox.getSelectionModel().clearSelection(); } @@ -201,7 +202,8 @@ public class ProjektHinzufuegenController * Empty 1st Student comboBox. * */ - public void handleResetStudent1() + @FXML + private void handleResetStudent1() { student1ComboBox.getSelectionModel().clearSelection(); } @@ -210,7 +212,8 @@ public class ProjektHinzufuegenController * Empty 2nd Student comboBox. * */ - public void handleResetStudent2() + @FXML + private void handleResetStudent2() { student2ComboBox.getSelectionModel().clearSelection(); } @@ -219,7 +222,8 @@ public class ProjektHinzufuegenController * Empty 3rd Student comboBox. * */ - public void handleResetStudent3() + @FXML + private void handleResetStudent3() { student3ComboBox.getSelectionModel().clearSelection(); } |
