summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2016-01-12 20:15:13 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2016-01-12 20:15:13 +0100
commit83af27ca52e2c877c7a6749a09b16cc84b2dc85f (patch)
tree8a904bf9bb10b608068d322525d48571b8f9bbe7 /src/de/fhswf
parent95dbf97fd8133faf07e465ff6f5bd54c21284470 (diff)
downloadProjektthemenvergabe-83af27ca52e2c877c7a6749a09b16cc84b2dc85f.tar.gz
Projektthemenvergabe-83af27ca52e2c877c7a6749a09b16cc84b2dc85f.zip
Make handler more restrictive
Diffstat (limited to 'src/de/fhswf')
-rw-r--r--src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java12
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();
}