blob: a1e2479e634e445138672f99f315b9e06c0308b3 [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.INewWizard;
import org.eclipse.ui.IWorkbench;
/**
* Does nothing. Used to test the Capability-awareness of the <b>commonWizard</b> extension.
*
* @since 3.2
*
*/
public class NewWizard1 extends Wizard implements INewWizard {
public NewWizard1() {
}
public boolean performFinish() {
return false;
}
public void init(IWorkbench workbench, IStructuredSelection selection) {
}
}