diff options
| author | tspitzer | 2013-09-04 15:31:41 +0200 |
|---|---|---|
| committer | tspitzer | 2013-09-04 15:31:41 +0200 |
| commit | 4294c84358d487624060cc1ef7edfd439871c717 (patch) | |
| tree | 1f1fe64068c305336cdc7abda2d4c07e547d6866 /Dozentenmodul/src/Wizard/newVLRohlingWizard.java | |
| parent | Login mit Funktionalität versehen (diff) | |
| download | tutor-module-4294c84358d487624060cc1ef7edfd439871c717.tar.gz tutor-module-4294c84358d487624060cc1ef7edfd439871c717.tar.xz tutor-module-4294c84358d487624060cc1ef7edfd439871c717.zip | |
neue features
- Erstes Wizard Fenster mit Rohlingsauswahl
- Erste Version des Downloaders ohne Progressbar
Diffstat (limited to 'Dozentenmodul/src/Wizard/newVLRohlingWizard.java')
| -rw-r--r-- | Dozentenmodul/src/Wizard/newVLRohlingWizard.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Dozentenmodul/src/Wizard/newVLRohlingWizard.java b/Dozentenmodul/src/Wizard/newVLRohlingWizard.java new file mode 100644 index 00000000..8ddd1bf9 --- /dev/null +++ b/Dozentenmodul/src/Wizard/newVLRohlingWizard.java @@ -0,0 +1,21 @@ +package Wizard;
+
+import org.eclipse.jface.wizard.Wizard;
+
+public class newVLRohlingWizard extends Wizard {
+
+ public newVLRohlingWizard() {
+ setWindowTitle("New Wizard");
+ }
+
+ @Override
+ public void addPages() {
+ addPage(new searchRohlingPage());
+ }
+
+ @Override
+ public boolean performFinish() {
+ return false;
+ }
+
+}
|
