summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/UpnFx/view/MainViewController.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/fhswf/in/inf/UpnFx/view/MainViewController.java')
-rw-r--r--src/de/fhswf/in/inf/UpnFx/view/MainViewController.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/de/fhswf/in/inf/UpnFx/view/MainViewController.java b/src/de/fhswf/in/inf/UpnFx/view/MainViewController.java
deleted file mode 100644
index 6e0b7e4..0000000
--- a/src/de/fhswf/in/inf/UpnFx/view/MainViewController.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- *
- */
-package de.fhswf.in.inf.UpnFx.view;
-
-import javafx.event.ActionEvent;
-import javafx.fxml.FXML;
-import javafx.scene.control.Button;
-import javafx.scene.control.TextField;
-
-/**
- * The controller for the MainView.fxml.
- *
- * @author Stefan Suhren
- * @version 1.0
- */
-public class MainViewController
-{
- @FXML
- private TextField txtField;
-
- @FXML
- private void numberHandle(ActionEvent event)
- {
- txtField.appendText(((Button) event.getSource()).getText());
- }
-
-}