blob: 9606320ba5fbd8b2b86b586f28183eb080dc14b1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.examples.readmetool;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.IWorkbench;
/**
* This class implements the interface required by the workbench
* for all 'New' wizards. This wizard creates readme files.
*/
public class ReadmeCreationWizard extends Wizard implements INewWizard {
private IStructuredSelection selection;
private IWorkbench workbench;
private ReadmeCreationPage mainPage;
@Override
public void addPages() {
mainPage = new ReadmeCreationPage(workbench, selection);
addPage(mainPage);
}
@Override
public void init(IWorkbench workbench, IStructuredSelection selection) {
this.workbench = workbench;
this.selection = selection;
setWindowTitle(MessageUtil.getString("New_Readme_File")); //$NON-NLS-1$
setDefaultPageImageDescriptor(ReadmeImages.README_WIZARD_BANNER);
}
@Override
public boolean performFinish() {
return mainPage.finish();
}
}