Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cdb30b59e6d0e7c2c96fdd04df966bfbb726a788 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*******************************************************************************
 * Copyright (c) 2002, 2004 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials 
 * are made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.examples.cheatsheets.pattern.actions;

import org.eclipse.jface.action.Action;
import org.eclipse.jface.viewers.*;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.*;
import org.eclipse.ui.*;
import org.eclipse.ui.cheatsheets.*;
import org.eclipse.ui.examples.cheatsheets.pattern.wizards.MyProjectCreationWizard;

public class OpenNewJavaProjectWizardWithNameAction extends Action implements ICheatSheetAction {
	private ICheatSheetManager csmanager;

	/**
	 * Create a new <code>OpenFileImportWizard</code> action.
	 */
	public OpenNewJavaProjectWizardWithNameAction() {
	}
	
	public void run() {
		try {
			IWorkbench workbench = PlatformUI.getWorkbench();

			IStructuredSelection selection = new StructuredSelection();

			MyProjectCreationWizard projectWizard = new MyProjectCreationWizard(csmanager);
			projectWizard.init(workbench, selection);

			Shell shell = Display.getCurrent().getActiveShell();
			WizardDialog wizardDialog = new WizardDialog(shell, projectWizard);

			wizardDialog.create();
			
			wizardDialog.open();

		} catch (Exception e) {

		}
	}

	/* (non-Javadoc)
	 * @see org.eclipse.ui.cheatsheets.ICheatsheetAction#run(java.lang.String[], org.eclipse.ui.cheatsheets.ICheatsheetManager)
	 */
	public void run(String[] params, ICheatSheetManager csm) {
		csmanager = csm;
		run();
	}

}

Back to the top