summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/Wizard/newVLRohlingWizard.java
diff options
context:
space:
mode:
authortspitzer2013-09-17 14:39:37 +0200
committertspitzer2013-09-17 14:39:37 +0200
commit2946380dadd756b40e7ed33ea95303b5ed2b20c7 (patch)
treef4c23eb5812b89c6c507a84235625a987220f4da /Dozentenmodul/src/Wizard/newVLRohlingWizard.java
parentAlle GUIs für das bauen einer VL auf Basis einer Rohling sind fertig. (diff)
downloadtutor-module-2946380dadd756b40e7ed33ea95303b5ed2b20c7.tar.gz
tutor-module-2946380dadd756b40e7ed33ea95303b5ed2b20c7.tar.xz
tutor-module-2946380dadd756b40e7ed33ea95303b5ed2b20c7.zip
neue Version
Diffstat (limited to 'Dozentenmodul/src/Wizard/newVLRohlingWizard.java')
-rw-r--r--Dozentenmodul/src/Wizard/newVLRohlingWizard.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/Dozentenmodul/src/Wizard/newVLRohlingWizard.java b/Dozentenmodul/src/Wizard/newVLRohlingWizard.java
deleted file mode 100644
index 05889927..00000000
--- a/Dozentenmodul/src/Wizard/newVLRohlingWizard.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package Wizard;
-
-import org.eclipse.jface.wizard.Wizard;
-
-public class newVLRohlingWizard extends Wizard {
-
- public newVLRohlingWizard() {
- setWindowTitle("New Wizard");
- }
-
- @Override
- public void addPages() {
- //addPage(new test());
- addPage(new searchRohlingPage());
- addPage(new VMWareInfoPage());
-
- }
-
- @Override
- public boolean performFinish() {
- return false;
- }
-
-}