01: /*******************************************************************************
02: * Copyright (c) 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.ui;
11:
12: import java.io.File;
13:
14: /**
15: * This interface represents a wizard which will be used to add plug-ins to
16: * the Target Platform. Typically, it maps to one wizard page, but more
17: * complex sections may span several pages. Also note that in the very simple
18: * cases it may not contribute any wizard pages.
19: *
20: * @since 3.3
21: */
22:
23: public interface IProvisionerWizard extends IBasePluginWizard {
24:
25: /**
26: * Returns an array of locations which contain plug-ins to be added to
27: * the Target Platform. If a location contains a "plugins" subdirectory,
28: * the subdirectory will be searched for plug-ins. Otherwise, the location
29: * itself will be searched for new plug-ins.
30: *
31: * @return an array of Files which represent the locations to search for
32: * new plug-ins.
33: */
34: public File[] getLocations();
35:
36: }
|