blob: 48da68000e39ebee3cc58576c1215e80bd4d0926 [file] [log] [blame]
package org.eclipse.ui.tests.navigator.wizards;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.ui.IImportWizard;
import org.eclipse.ui.IWorkbench;
/**
* Does nothing. Used to test the Capability-awareness of the <b>commonWizard</b> extension.
*
* @since 3.2
*
*/
public class ImportWizard1 extends Wizard implements IImportWizard {
public ImportWizard1() {
}
public boolean performFinish() {
return false;
}
public void init(IWorkbench workbench, IStructuredSelection selection) {
}
}