diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2016-01-12 20:15:13 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2016-01-12 20:15:13 +0100 |
| commit | 83af27ca52e2c877c7a6749a09b16cc84b2dc85f (patch) | |
| tree | 8a904bf9bb10b608068d322525d48571b8f9bbe7 /src/de | |
| parent | 95dbf97fd8133faf07e465ff6f5bd54c21284470 (diff) | |
| download | Projektthemenvergabe-83af27ca52e2c877c7a6749a09b16cc84b2dc85f.tar.gz Projektthemenvergabe-83af27ca52e2c877c7a6749a09b16cc84b2dc85f.zip | |
Make handler more restrictive
Diffstat (limited to 'src/de')
| -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(); } |
