blob: cd134073ceb7ec9b085d437cb8ea64015fff837c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.examples.views.properties.tabbed.logic;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.Wizard;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.IWorkbench;
public class LogicCreationWizard
extends Wizard
implements INewWizard {
private LogicWizardPage1 logicPage = null;
private IStructuredSelection selection;
private IWorkbench workbench;
public void addPages() {
logicPage = new LogicWizardPage1(workbench, selection);
addPage(logicPage);
}
public void init(IWorkbench aWorkbench,
IStructuredSelection currentSelection) {
workbench = aWorkbench;
selection = currentSelection;
}
public boolean performFinish() {
return logicPage.finish();
}
}