Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7b9b36339c3a43eb6a0a86b0825f2db64da00618 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
 * Copyright (c) 2011 Wind River Systems, Inc. and others. 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:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.ui.wizards.interfaces;

import org.eclipse.tcf.te.ui.wizards.newWizard.NewWizardSelectionPage;
import org.eclipse.ui.wizards.IWizardDescriptor;

/**
 * Interface to be implemented optionally by new target wizards.
 */
public interface INewTargetWizard {

	/**
	 * Called by the {@link NewWizardSelectionPage} to associate the wizard
	 * instance with the wizard descriptor the wizard got created from.
	 * <p>
	 * This method is called just before
	 * {@link #init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)}
	 * is called.
	 *
	 * @param descriptor
	 */
	public void setWizardDescriptor(IWizardDescriptor descriptor);
}

Back to the top