blob: c6e8f9a2aed7ffb91e61a8fd1ae00eccde43f3be [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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;
/**
* 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 {
}