blob: 753b5784a0f6b3b1b7b8a85febbdccf8c7ca69ba [file] [log] [blame]
package org.eclipse.ui;
/**********************************************************************
Copyright (c) 2002 IBM Corp. and others.
All rights reserved.   This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
 
Contributors:
**********************************************************************/
import org.eclipse.core.resources.IProject;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.IWizard;
/**
* Interface for project capability configuration wizards.
* <p>
* Clients should implement this interface and include the name of their class
* in an extension contributed to the workbench's capabilities wizard extension point
* (named <code>"org.eclipse.ui.capabilities"</code>).
* </p>
*
* @see org.eclipse.jface.wizard.IWizard
* @see org.eclipse.ui.ICapabilityInstallWizard
* @since 2.0
* @deprecated use ICapabilityInstallWizard instead. This interface
* will be deleted for M6 milestone build.
*/
public interface ICapabilityWizard extends ICapabilityInstallWizard {
}