blob: 06b30e8742241b0bcba39b1f5a831d26decc6640 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Hussein MHANNA - initial API and implementation
******************************************************************************/
package org.eclipse.rmf.cheatsheets.handlers;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard;
/**
* The Class CreateProjectHandler.
*/
public class CreateProjectHandler extends AbstractOpenWizardHandler {
/* (non-Javadoc)
* @see org.eclipse.rmf.cheatsheets.handlers.AbstractOpenWizardHandler#createWizard()
*/
@Override
protected INewWizard createWizard() throws CoreException {
return new BasicNewProjectResourceWizard();
}
}