1 /******************************************************************************* 2 * Copyright (c) 2000, 2006 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.team.ui; 12 13 14 import org.eclipse.core.resources.IProject; 15 import org.eclipse.jface.wizard.IWizard; 16 import org.eclipse.ui.IWorkbench; 17 18 /** 19 * IConfigurationWizard defines the interface that users of the extension 20 * point <code>org.eclipse.team.ui.configurationWizards</code> must implement. 21 * 22 * @since 2.0 23 */ 24 public interface IConfigurationWizard extends IWizard { 25 /** 26 * Initializes this creation wizard using the passed workbench and 27 * object selection. 28 * <p> 29 * This method is called after the no argument constructor and 30 * before other methods are called. 31 * </p> 32 * 33 * @param workbench the current workbench 34 * @param project the selected project 35 */ 36 void init(IWorkbench workbench, IProject project); 37 } 38 39