diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-11-30 17:07:36 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-11-30 17:07:36 +0100 |
| commit | fa8fd8f0eb63198da62b853bab12cc416bc3aee4 (patch) | |
| tree | cbc77fb4b4698748e940df8732622f192a49e4a6 /src/de/fhswf/in/inf/se/notepadMinusMinus/view | |
| parent | 8a1495c42b2512ed1e85e998a13a050c6ce7aa55 (diff) | |
| download | Notepad---fa8fd8f0eb63198da62b853bab12cc416bc3aee4.tar.gz Notepad---fa8fd8f0eb63198da62b853bab12cc416bc3aee4.zip | |
Add default header for methods and classes
Diffstat (limited to 'src/de/fhswf/in/inf/se/notepadMinusMinus/view')
| -rw-r--r-- | src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainViewController.java | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainViewController.java b/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainViewController.java index ef15ebd..fed6d36 100644 --- a/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainViewController.java +++ b/src/de/fhswf/in/inf/se/notepadMinusMinus/view/MainViewController.java @@ -19,6 +19,12 @@ import javafx.scene.control.cell.TextFieldTableCell; import javafx.stage.FileChooser; import javafx.util.converter.IntegerStringConverter; +/** + * TODO Add comment here + * + * @author $Author: $ + * @version $Revision: $, $Date: $ UTC + */ public class MainViewController { @FXML @@ -56,6 +62,10 @@ public class MainViewController private Main main; + /** + * TODO Add method comment here + * + */ @FXML private void initialize() { @@ -105,6 +115,11 @@ public class MainViewController colloquiumComboBox.setItems(Grade.gradeValuesProperty()); } + /** + * TODO Add method comment here + * + * @param main + */ public void setMain(Main main) { this.main = main; @@ -134,6 +149,10 @@ public class MainViewController }); } + /** + * TODO Add method comment here + * + */ @FXML private void handleNewValue() { @@ -141,6 +160,10 @@ public class MainViewController gradeTable.getItems().add(grade); } + /** + * TODO Add method comment here + * + */ @FXML private void handleDeleteValue() { @@ -152,6 +175,10 @@ public class MainViewController } } + /** + * TODO Add method comment here + * + */ @FXML private void handleNew() { @@ -162,6 +189,10 @@ public class MainViewController } } + /** + * TODO Add method comment here + * + */ @FXML private void handleOpen() { @@ -194,6 +225,10 @@ public class MainViewController } } + /** + * TODO Add method comment here + * + */ @FXML private void handleSave() { @@ -210,6 +245,10 @@ public class MainViewController } } + /** + * TODO Add method comment here + * + */ @FXML private void handleSaveAs() { @@ -246,6 +285,10 @@ public class MainViewController } } + /** + * TODO Add method comment here + * + */ @FXML private void handleExit() { |
