summaryrefslogtreecommitdiffstats
path: root/Dozentenmodul/src/Wizard/newVLRohlingWizard.java
blob: 0588992732952db41f663cd597249857066ecf0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
	}

}