blob: bfb5f69b8e3a59157ec13883e86220226b871634 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.sdk.ui.wizard.outline;
import org.eclipse.jdt.core.IType;
import org.eclipse.scout.sdk.operation.outline.OutlineNewOperation;
import org.eclipse.scout.sdk.ui.wizard.AbstractWorkspaceWizard;
import org.eclipse.scout.sdk.workspace.IScoutBundle;
public class OutlineNewWizard extends AbstractWorkspaceWizard {
private OutlineNewWizardPage m_page1;
public OutlineNewWizard(IScoutBundle clientBundle) {
this(clientBundle, null);
}
public OutlineNewWizard(IScoutBundle clientBunldle, IType desktopType) {
setWindowTitle("New Outline");
OutlineNewOperation op = new OutlineNewOperation();
op.setDesktopType(desktopType);
m_page1 = new OutlineNewWizardPage(clientBunldle);
m_page1.setAddToDesktopEnabled(desktopType != null);
m_page1.setAddToDesktop(desktopType != null);
m_page1.setOperation(op);
addPage(m_page1);
}
}