diff options
Diffstat (limited to 'src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java')
| -rw-r--r-- | src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java | 36 |
1 files changed, 36 insertions, 0 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 806feda..1a5a193 100644 --- a/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java +++ b/src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java @@ -155,6 +155,42 @@ public class ProjektHinzufuegenController } /** + * Empty Ansprechpartner comboBox. + * + */ + public void handleResetAnsprechpartner() + { + ansprechpartnerComboBox.getSelectionModel().clearSelection(); + } + + /** + * Empty 1st Student comboBox. + * + */ + public void handleResetStudent1() + { + student1ComboBox.getSelectionModel().clearSelection(); + } + + /** + * Empty 2nd Student comboBox. + * + */ + public void handleResetStudent2() + { + student2ComboBox.getSelectionModel().clearSelection(); + } + + /** + * Empty 3rd Student comboBox. + * + */ + public void handleResetStudent3() + { + student3ComboBox.getSelectionModel().clearSelection(); + } + + /** * * Set the Text of the Fields from the stage into the TableView and close * the projekthinzufuegen stage. |
