upload tizen1.0 source
[sdk/ide/product.git] / org.eclipse.cdt.ui / src / org / eclipse / cdt / internal / ui / wizards / NewProjectDropDownAction.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.cdt.internal.ui.wizards;
12
13 import org.eclipse.cdt.internal.ui.ICHelpContextIds;
14 import org.eclipse.jface.action.IAction;
15 import org.eclipse.ui.PlatformUI;
16
17 public class NewProjectDropDownAction extends AbstractWizardDropDownAction {
18
19         public NewProjectDropDownAction() {
20             super();
21                 PlatformUI.getWorkbench().getHelpSystem().setHelp(this, ICHelpContextIds.OPEN_PROJECT_WIZARD_ACTION);
22         }
23         
24         @Override
25         protected IAction[] getWizardActions() {
26                 return CWizardRegistry.getProjectWizardActions();
27         }
28 }