diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2016-01-11 16:35:10 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2016-01-11 16:57:15 +0100 |
| commit | 46ae68700fbc90c3cd2249589123835cd89e8d94 (patch) | |
| tree | aee266a27fa324cb8ab0c66737ea7a7bca6b0839 /src/de/fhswf/in/inf/se/projektthemenvergabe/view/ProjektHinzufuegenController.java | |
| parent | 45ee03efdc57ae5a168d460590b905354048b733 (diff) | |
| download | Projektthemenvergabe-46ae68700fbc90c3cd2249589123835cd89e8d94.tar.gz Projektthemenvergabe-46ae68700fbc90c3cd2249589123835cd89e8d94.zip | |
Allow reseting of ansprechpartner and student
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. |
